microsoft / vscode-docs

Public documentation for Visual Studio Code
http://code.visualstudio.com/docs
Other
5.57k stars 4.52k forks source link

shortcuts description incorrect #7337

Closed yg-i closed 1 month ago

yg-i commented 1 month ago

re this sentence (relevant part highlighted) on this page (https://code.visualstudio.com/docs/editor/editingevolved)

Tip: To loop through errors or warnings in the current file, you can press F8 or Shift+F8 which will show an inline zone detailing the problem and possible Code Actions (if available):

It seems that either "in the current file" should be changed, or the two shortcuts should be changed to alt+F8 and shift+alt+F8 From the default keybinding json:

{ "key": "alt+f8",                "command": "editor.action.marker.next",
                                     "when": "editorFocus" },
{ "key": "f8",                    "command": "editor.action.marker.nextInFiles",
                                     "when": "editorFocus" },
{ "key": "shift+alt+f8",          "command": "editor.action.marker.prev",
                                     "when": "editorFocus" },
{ "key": "shift+f8",              "command": "editor.action.marker.prevInFiles",
                                     "when": "editorFocus" },
ntrogh commented 1 month ago

Thanks @yg-i