Skip to content

Commit aabe939

Browse files
committed
chore: default shortcut for next prev problem is ctrl-shfit?-i, f8 key to match browser dev tool
1 parent d5e6f91 commit aabe939

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/base-config/keyboard.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,10 +305,10 @@
305305
}
306306
],
307307
"navigate.gotoNextProblem": [
308-
"F8"
308+
"Ctrl-I"
309309
],
310310
"navigate.gotoPrevProblem": [
311-
"Shift-F8"
311+
"Ctrl-Shift-I"
312312
],
313313
"navigate.prevDocListOrder": [
314314
{

src/extensionsIntegrated/DisplayShortcuts/vscode.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,7 @@
1818
"Ctrl-Shift-_": "navigation.jump.fwd",
1919
"Ctrl-P": "navigate.quickOpen",
2020
"Ctrl-Shift-P": "cmd.keyboardNavUI",
21-
"Ctrl-Shift-O": "navigate.gotoDefinition"
21+
"Ctrl-Shift-O": "navigate.gotoDefinition",
22+
"F8": "navigate.gotoNextProblem",
23+
"Shift-F8": "navigate.gotoPrevProblem"
2224
}

0 commit comments

Comments
 (0)