There is a new fast search implementation in vscode. For when you just want to do a quick, simple search (i.e., no regex, no replace, none of the usual find options like matchWholeWord
, etc.) in the workspace. It is available for testing now in Insiders v1.82.
It appears to use the Find widget as the query field for that widget will be filled with the search term you type in and thereafter you can use things like the command Select All Occurrences of Find Match
in the file you go to. Results are grouped by file. Click on an entry to go to that file and line number.
Search: Quick Text Search (Experimental) // in the Command Palette
workbench.action.experimental.quickTextSearch // to be used in a keybinding
The command is unbound to a keybinding but you can make your own like this:
{
"key": "alt+q",
"command": "workbench.action.experimental.quickTextSearch"
}

You can rightArrow on any entry in the list and it will open in thebackground without losing focus on the quickPanel.
Clicking on the entry or hitting Enter will go to that entry and close the QuickPanel.