12345678910111213141516171819202122232425262728293031323334 |
- [
- {
- "key": "ctrl+oem_3",
- "command": "-workbench.action.terminal.toggleTerminal"
- },
- {
- "key": "ctrl+d",
- "command": "editor.action.deleteLines",
- "when": "textInputFocus && !editorReadonly"
- },
- {
- "key": "shift+alt+w",
- "command": "editor.foldRecursively",
- "when": "editorTextFocus"
- },
- {
- "key": "shift+alt+s",
- "command": "editor.unfold",
- "when": "editorTextFocus"
- },
- {
- "key": "shift+alt+s",
- "command": "editor.unfoldRecursively"
- },
- {
- "key": "ctrl+alt+f",
- "command": "eslint.executeAutofix"
- },
- {
- "key": "alt+oem_2",
- "command": "editor.action.triggerSuggest",
- "when": "editorHasCompletionItemProvider && textInputFocus && !editorReadonly"
- }
- ]
|