255 lines
6.2 KiB
JSON
255 lines
6.2 KiB
JSON
// Place your key bindings in this file to override the defaultsauto[]
|
|
[
|
|
{
|
|
"key": "cmd+-",
|
|
"command": "workbench.action.navigateBack"
|
|
},
|
|
{
|
|
"key": "cmd+=",
|
|
"command": "workbench.action.navigateForward"
|
|
},
|
|
{
|
|
"key": "cmd+d",
|
|
"command": "editor.action.revealDefinition",
|
|
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
|
|
},
|
|
{
|
|
"key": "cmd+w",
|
|
"command": "workbench.action.closeWindow",
|
|
"when": "!editorIsOpen && !multipleEditorGroups"
|
|
},
|
|
{
|
|
"key": "cmd+c",
|
|
"command": "editor.action.clipboardCopyAction",
|
|
"when": "textInputFocus"
|
|
},
|
|
{
|
|
"key": "cmd+x",
|
|
"command": "editor.action.clipboardCutAction",
|
|
"when": "textInputFocus && !editorReadonly"
|
|
},
|
|
{
|
|
"key": "cmd+f",
|
|
"command": "actions.find"
|
|
},
|
|
{
|
|
"key": "cmd+n",
|
|
"command": "editor.action.nextMatchFindAction",
|
|
"when": "editorFocus"
|
|
},
|
|
{
|
|
"key": "cmd+shift+l",
|
|
"command": "editor.action.formatSelection",
|
|
"when": "editorHasDocumentSelectionFormattingProvider && editorHasDocumentSelectionFormattingProvider && editorTextFocus && !editorReadonly"
|
|
},
|
|
{
|
|
"key": "cmd+g",
|
|
"command": "workbench.action.gotoLine"
|
|
},
|
|
{
|
|
"key": "cmd+/",
|
|
"command": "editor.action.commentLine",
|
|
"when": "editorTextFocus && !editorReadonly"
|
|
},
|
|
{
|
|
"key": "cmd+shift+=",
|
|
"command": "workbench.action.zoomIn"
|
|
},
|
|
{
|
|
"key": "cmd+2",
|
|
"command": "workbench.action.focusSecondEditorGroup"
|
|
},
|
|
{
|
|
"key": "cmd+1",
|
|
"command": "workbench.action.focusFirstEditorGroup"
|
|
},
|
|
{
|
|
"key": "cmd+b",
|
|
"command": "workbench.action.toggleSidebarVisibility"
|
|
},
|
|
{
|
|
"key": "cmd+shift+r",
|
|
"command": "workbench.action.reopenClosedEditor"
|
|
},
|
|
{
|
|
"key": "cmd+p",
|
|
"command": "workbench.action.quickOpen"
|
|
},
|
|
{
|
|
"key": "cmd+v",
|
|
"command": "editor.action.clipboardPasteAction",
|
|
"when": "textInputFocus && !editorReadonly"
|
|
},
|
|
{
|
|
"key": "cmd+shift+f",
|
|
"command": "workbench.action.findInFiles"
|
|
},
|
|
{
|
|
"key": "cmd+z",
|
|
"command": "undo",
|
|
"when": "textInputFocus && !editorReadonly"
|
|
},
|
|
{
|
|
"key": "cmd+shift+z",
|
|
"command": "redo",
|
|
"when": "textInputFocus && !editorReadonly"
|
|
},
|
|
{
|
|
"key": "cmd+j",
|
|
"command": "cursorDown",
|
|
"when": "textInputFocus"
|
|
},
|
|
{
|
|
"key": "cmd+k",
|
|
"command": "cursorUp",
|
|
"when": "textInputFocus"
|
|
},
|
|
{
|
|
"key": "cmd+h",
|
|
"command": "cursorLeft",
|
|
"when": "textInputFocus"
|
|
},
|
|
{
|
|
"key": "cmd+l",
|
|
"command": "cursorRight",
|
|
"when": "textInputFocus"
|
|
},
|
|
{
|
|
"key": "cmd+shift+j",
|
|
"command": "workbench.action.search.toggleQueryDetails",
|
|
"when": "searchViewletVisible"
|
|
},
|
|
{
|
|
"key": "cmd+,",
|
|
"command": "workbench.action.openSettings"
|
|
},
|
|
{
|
|
"key": "cmd+shift+tab",
|
|
"command": "workbench.action.openPreviousRecentlyUsedEditorInGroup"
|
|
},
|
|
{
|
|
"key": "cmd+shift+r",
|
|
"command": "workbench.action.reopenClosedEditor"
|
|
},
|
|
{
|
|
"key": "cmd+shift+-",
|
|
"command": "workbench.action.zoomOut"
|
|
},
|
|
{
|
|
"key": "cmd+[",
|
|
"command": "editor.foldAll",
|
|
"when": "editorTextFocus"
|
|
},
|
|
{
|
|
"key": "cmd+]",
|
|
"command": "editor.unfoldAll",
|
|
"when": "editorTextFocus"
|
|
},
|
|
{
|
|
"key": "cmd+e",
|
|
"command": "workbench.action.terminal.toggleTerminal"
|
|
},
|
|
{
|
|
"key": "cmd+n",
|
|
"command": "workbench.action.terminal.findNextTerminalFocus",
|
|
"when": "terminalFocus"
|
|
},
|
|
{
|
|
"key": "cmd+p",
|
|
"command": "workbench.action.terminal.findPreviousTerminalFocus",
|
|
"when": "terminalFocus"
|
|
},
|
|
{
|
|
"key": "cmd+t",
|
|
"command": "workbench.action.terminal.newInActiveWorkspace",
|
|
"when": "terminalFocus"
|
|
},
|
|
{
|
|
"key": "cmd+w",
|
|
"command": "workbench.action.terminal.kill",
|
|
"when": "terminalFocus"
|
|
},
|
|
{
|
|
"key": "cmd+shift+]",
|
|
"command": "workbench.action.terminal.focusNext"
|
|
},
|
|
{
|
|
"key": "cmd+shift+[",
|
|
"command": "workbench.action.terminal.focusPrevious"
|
|
},
|
|
{
|
|
"key": "shift+escape",
|
|
"command": "search.action.clearSearchResults"
|
|
},
|
|
{
|
|
"key": "cmd+shift+n",
|
|
"command": "editor.action.previousMatchFindAction",
|
|
"when": "editorFocus"
|
|
},
|
|
{
|
|
"key": "cmd+1",
|
|
"command": "workbench.action.openEditorAtIndex1"
|
|
},
|
|
{
|
|
"key": "cmd+2",
|
|
"command": "workbench.action.openEditorAtIndex2"
|
|
},
|
|
{
|
|
"key": "cmd+3",
|
|
"command": "workbench.action.openEditorAtIndex3"
|
|
},
|
|
{
|
|
"key": "cmd+4",
|
|
"command": "workbench.action.openEditorAtIndex4"
|
|
},
|
|
{
|
|
"key": "cmd+5",
|
|
"command": "workbench.action.openEditorAtIndex5"
|
|
},
|
|
{
|
|
"key": "cmd+6",
|
|
"command": "workbench.action.openEditorAtIndex6"
|
|
},
|
|
{
|
|
"key": "cmd+7",
|
|
"command": "workbench.action.openEditorAtIndex7"
|
|
},
|
|
{
|
|
"key": "cmd+8",
|
|
"command": "workbench.action.openEditorAtIndex8"
|
|
},
|
|
{
|
|
"key": "cmd+9",
|
|
"command": "workbench.action.openEditorAtIndex9"
|
|
},
|
|
{
|
|
"key": "cmd+0",
|
|
"command": "workbench.action.lastEditorInGroup"
|
|
},
|
|
{
|
|
"key": "cmd+t",
|
|
"command": "workbench.action.debug.stop",
|
|
"when": "inDebugMode && !terminalFocus"
|
|
},
|
|
{
|
|
"key": "cmd+r",
|
|
"command": "workbench.action.debug.start",
|
|
"when": "!inDebugMode && !terminalFocus"
|
|
},
|
|
{
|
|
"key": "cmd+r",
|
|
"command": "workbench.action.debug.continue",
|
|
"when": "inDebugMode"
|
|
},
|
|
{
|
|
"key": "shift+cmd+b",
|
|
"command": "editor.debug.action.toggleBreakpoint",
|
|
"when": "editorTextFocus"
|
|
},
|
|
{
|
|
"key": "shift+cmd+t",
|
|
"command": "workbench.action.debug.restart",
|
|
"when": "inDebugMode"
|
|
},
|
|
]
|