Vscode key binding for "go to next search result in search results pane"?

Is there a vscode key binding for "next search result in the search results pane"?

I could not find it in json keybindings or http://code.visualstudio.com/docs/customization/keybindings , but the descriptions are not always so wonderful, and I might have missed it!

+4
source share
2 answers

This is now supported .

  • F4 next search result
  • Shift+ F4previous search result
+5
source

New in version 1.9.0

Run search.action.focusNextSearchResult( F4)

search.action.focusPreviousSearchResult (CTRL + F4)

, . workbench.view.search ( * CTRL + Shift + f) ENTER.

actions.find ( Shift + f), , editor.action.nextMatchFindAction, F3. :

{ 
  "key": "f3",                    "command": "editor.action.nextMatchFindAction",
                                  "when": "editorFocus" 
}

VSCode Windows

+3

Source: https://habr.com/ru/post/1656241/


All Articles