Skip to content

Commit

Permalink
Add keybindings for navigating between errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
robrix committed Oct 5, 2020
1 parent 43ba2da commit 85d8902
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Library/Application Support/Code/User/keybindings.json
Expand Up @@ -686,5 +686,25 @@
"command": "workbench.action.terminal.sendSequence",
"args": { "text": "\u001b\u007f" },
"when": "terminalFocus"
},
{
"key": "ctrl+shift+down",
"command": "editor.action.marker.nextInFiles",
"when": "editorFocus"
},
{
"key": "f8",
"command": "-editor.action.marker.nextInFiles",
"when": "editorFocus"
},
{
"key": "ctrl+shift+up",
"command": "editor.action.marker.prevInFiles",
"when": "editorFocus"
},
{
"key": "shift+f8",
"command": "-editor.action.marker.prevInFiles",
"when": "editorFocus"
}
]

0 comments on commit 85d8902

Please sign in to comment.