You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VS Code does support regular expression searches, however, backreferences, lookaround, and multiline matches are not supported. This is because VS Code depends on the search tool ripgrep, which, while extremely fast, doesn't support these advanced regex features.
But I see VSC has a search.useRipgrep option. If it is set to false, VSC seems support those advance search options. Shall we add a hint about it?
Besides, there are a search.useRipgrep option and a searchrg.enable option, which make me confused...
Thanks.
The text was updated successfully, but these errors were encountered:
I keep trying to remove the old non-ripgrep search. I'm also working on allowing extensions to contribute their own search provider: microsoft/vscode#47058. With that API, someone can implement an extension for search that supports all the advanced regex features.
Thanks for the suggestion but I don't want to encourage anyone else to depend on search.useRipgrep for now. And searchrg.enable is temporary for switching between the builtin search and the "experimental" search that uses the SearchProvider api.
Hi. In
https://github.com/Microsoft/vscode-docs/blob/master/docs/editor/codebasics.md#search-across-files
But I see VSC has a
search.useRipgrep
option. If it is set to false, VSC seems support thoseadvance search options
. Shall we add a hint about it?Besides, there are a
search.useRipgrep
option and asearchrg.enable
option, which make me confused...Thanks.
The text was updated successfully, but these errors were encountered: