How to extend vscode search? #13
-
I want to create a search plugin that works/looks exactly like a normal search in vscode + more options based on the results
I don't have a specific question yet but any help will be much appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @a7madgamal , There is no API for that, so you can't customize the Search feature. Maybe the References View extension (https://marketplace.visualstudio.com/items?itemName=ms-vscode.references-view) is something that could be useful for you. But as you can see, it does not injects anything to the Search feature but instead, creates its own results view. Hope this helps |
Beta Was this translation helpful? Give feedback.
Hi @a7madgamal ,
There is no API for that, so you can't customize the Search feature.
Maybe the References View extension (https://marketplace.visualstudio.com/items?itemName=ms-vscode.references-view) is something that could be useful for you. But as you can see, it does not injects anything to the Search feature but instead, creates its own results view.
Hope this helps