-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement the extensions searchbar #409
Comments
Hi @tomlin7, I also messaged you on discord regd. this issue, Needed some clarity w.r.t issue #409 , As I understand, I'd have to edit Moreover, From what I understand, |
Hello @Kabiirk This issue regarding the extensions view search bar is also connected to #334 (showing recommended extensions by default), which is not completed yet. So currently, the view shows all the extensions from
After fetching the data is inserted into a fetch queue, and this is accessed in the extensions GUI You will just have to filter the data according to the extensions search bar input and show it whenever the search bar is not empty. |
Ah, I see, so you are already populating the sidebar 'frame' (which shows the extension names). I just need to write the logic to filter from the given names (basically running a filter query on self.fetch_queue) as per user input and update the GUI. I'd be happy to assist on this, Thanks for the detailed description & clarity ! |
Hi @tomlin7, I'm working on Issue#409 in biscuit. I've been facing issues in getting the project up and running Steps as per
I tried reinstalling enum (confirmed to be installed with
System info: |
@Kabiirk thanks for bringing this to my attention! StrEnum wasn't added until 3.11, so that makes the editor support only Python 3.11+. Please try again with the mentioned version or try using a version manager like pyenv to handle both versions if you still need 3.10! |
hi @tomlin7, Thanks for the support ! I was able to get the project up and running with Python 3.11.9 I have implemented the search functionality. It looks like this : This has been achieved by adding search functions (filter logic) to the Let me know if this looks good. I'll make the PR P.S. This is more of a problem for devs @ |
@Kabiirk that looks excellent to me! please open a pr and I will merge it.
Btw thanks for pointing out the dependency error! I will mark Biscuit as unsupported for 3.13 until this issue is resolved. Tarts is maintained by me currently. I'll make some quick changes to fix this for now. |
@tomlin7 Done ! I've added the enter key-press functionality. Making PR. |
Following #334
The extension center search bar is not functional yet, simply implement this.
extensions.toml
) and show the resultsrecommended.toml
Show extension recommendations #334 )The text was updated successfully, but these errors were encountered: