|
141 | 141 | { "key": "enter", "command": "repl.action.acceptInput",
|
142 | 142 | "when": "editorTextFocus && inDebugRepl" },
|
143 | 143 | { "key": "down", "command": "repl.action.historyNext",
|
144 |
| - "when": "editorTextFocus && onLastDebugReplLine" }, |
| 144 | + "when": "editorTextFocus && inDebugRepl && onLastDebugReplLine" }, |
145 | 145 | { "key": "up", "command": "repl.action.historyPrevious",
|
146 |
| - "when": "editorTextFocus && onFirsteDebugReplLine" }, |
| 146 | + "when": "editorTextFocus && inDebugRepl && onFirsteDebugReplLine" }, |
147 | 147 | { "key": "cmd+e", "command": "actions.find" },
|
148 | 148 | { "key": "cmd+f", "command": "actions.find" },
|
149 | 149 | { "key": "cmd+k cmd+c", "command": "editor.action.addCommentLine",
|
|
290 | 290 | "when": "editorFocus && findWidgetVisible" },
|
291 | 291 | { "key": "alt+enter", "command": "editor.action.selectAllMatches",
|
292 | 292 | "when": "editorFocus && findWidgetVisible" },
|
| 293 | +{ "key": "alt+down", "command": "find.history.showNext", |
| 294 | + "when": "editorFocus && findInputFocussed && findWidgetVisible" }, |
| 295 | +{ "key": "alt+up", "command": "find.history.showPrevious", |
| 296 | + "when": "editorFocus && findInputFocussed && findWidgetVisible" }, |
293 | 297 | { "key": "alt+cmd+c", "command": "toggleFindCaseSensitive",
|
294 | 298 | "when": "editorFocus" },
|
295 | 299 | { "key": "alt+cmd+r", "command": "toggleFindRegex",
|
|
396 | 400 | "when": "accessibilityHelpWidgetVisible && editorFocus" },
|
397 | 401 | { "key": "alt+cmd+enter", "command": "search.action.replaceAll",
|
398 | 402 | "when": "replaceActive && searchViewletVisible && !findWidgetVisible" },
|
| 403 | +{ "key": "down", "command": "search.focus.nextInputBox", |
| 404 | + "when": "inputBoxFocus && searchViewletVisible" }, |
| 405 | +{ "key": "up", "command": "search.focus.previousInputbox", |
| 406 | + "when": "inputBoxFocus && searchViewletVisible && !searchInputBoxFocus" }, |
| 407 | +{ "key": "alt+down", "command": "search.history.showNext", |
| 408 | + "when": "searchInputBoxFocus && searchViewletVisible" }, |
| 409 | +{ "key": "alt+up", "command": "search.history.showPrevious", |
| 410 | + "when": "searchInputBoxFocus && searchViewletVisible" }, |
399 | 411 | { "key": "shift+cmd+r", "command": "toggleExperimentalScreenReaderSupport" },
|
| 412 | +{ "key": "alt+cmd+c", "command": "toggleSearchCaseSensitive", |
| 413 | + "when": "searchInputBoxFocus && searchViewletVisible" }, |
| 414 | +{ "key": "alt+cmd+r", "command": "toggleSearchRegex", |
| 415 | + "when": "searchInputBoxFocus && searchViewletVisible" }, |
| 416 | +{ "key": "alt+cmd+w", "command": "toggleSearchWholeWord", |
| 417 | + "when": "searchInputBoxFocus && searchViewletVisible" }, |
400 | 418 | { "key": "cmd+w", "command": "workbench.action.closeActiveEditor" },
|
401 | 419 | { "key": "cmd+k cmd+w", "command": "workbench.action.closeAllEditors" },
|
402 | 420 | { "key": "cmd+k w", "command": "workbench.action.closeEditorsInGroup" },
|
|
492 | 510 | "when": "!terminalFocus" },
|
493 | 511 | { "key": "cmd+down", "command": "workbench.action.terminal.scrollDown",
|
494 | 512 | "when": "terminalFocus" },
|
| 513 | +{ "key": "pagedown", "command": "workbench.action.terminal.scrollDownPage", |
| 514 | + "when": "terminalFocus" }, |
495 | 515 | { "key": "cmd+up", "command": "workbench.action.terminal.scrollUp",
|
496 | 516 | "when": "terminalFocus" },
|
| 517 | +{ "key": "pageup", "command": "workbench.action.terminal.scrollUpPage", |
| 518 | + "when": "terminalFocus" }, |
497 | 519 | { "key": "ctrl+`", "command": "workbench.action.terminal.toggleTerminal" },
|
498 | 520 | { "key": "ctrl+cmd+f", "command": "workbench.action.toggleFullScreen" },
|
499 | 521 | { "key": "cmd+j", "command": "workbench.action.togglePanel" },
|
|
0 commit comments