Created
March 11, 2023 13:21
-
-
Save AndrejJurkin/2068ff20ad0e44a9402135fb12dff6dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "key": "cmd+d", | |
| "command": "editor.action.deleteLines", | |
| "when": "textInputFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+shift+k", | |
| "command": "-editor.action.deleteLines", | |
| "when": "textInputFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+enter", | |
| "command": "editor.action.insertLineAfter", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "ctrl+enter", | |
| "command": "-editor.action.insertLineAfter", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift shift", | |
| "command": "workbench.action.quickOpen" | |
| }, | |
| { | |
| "key": "cmd+e", | |
| "command": "workbench.action.quickOpen" | |
| }, | |
| { | |
| "key": "n", | |
| "command": "explorer.newFile", | |
| "when": "sideBarFocus && !inputFocus" | |
| }, | |
| { | |
| "key": "ctrl+n", | |
| "command": "-workbench.action.files.newUntitledFile" | |
| }, | |
| { | |
| "key": "shift+cmd+n", | |
| "command": "explorer.newFolder", | |
| "when": "sideBarFocus" | |
| }, | |
| { | |
| "key": "cmd+b", | |
| "command": "editor.action.revealDefinition", | |
| "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" | |
| }, | |
| { | |
| "key": "f12", | |
| "command": "-editor.action.revealDefinition", | |
| "when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" | |
| }, | |
| { | |
| "key": "cmd+w", | |
| "command": "editor.action.smartSelect.expand", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "shift+alt+right", | |
| "command": "-editor.action.smartSelect.expand", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "cmd+p", | |
| "command": "-workbench.action.quickOpen" | |
| }, | |
| { | |
| "key": "cmd+e", | |
| "command": "workbench.action.quickOpenNavigateNextInFilePicker", | |
| "when": "inFilesPicker && inQuickOpen" | |
| }, | |
| { | |
| "key": "cmd+l", | |
| "command": "workbench.action.quickOpenNavigateNextInFilePicker", | |
| "when": "inFilesPicker && inQuickOpen" | |
| }, | |
| { | |
| "key": "cmd+o", | |
| "command": "workbench.action.quickOpenNavigatePreviousInFilePicker", | |
| "when": "inFilesPicker && inQuickOpen" | |
| }, | |
| { | |
| "key": "cmd+p", | |
| "command": "-workbench.action.quickOpenNavigateNextInFilePicker", | |
| "when": "inFilesPicker && inQuickOpen" | |
| }, | |
| { | |
| "key": "shift+cmd+up", | |
| "command": "editor.action.moveLinesUpAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+up", | |
| "command": "-editor.action.moveLinesUpAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+cmd+down", | |
| "command": "editor.action.moveLinesDownAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "alt+down", | |
| "command": "-editor.action.moveLinesDownAction", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "shift+cmd+r", | |
| "command": "editor.action.rename", | |
| "when": "editorHasRenameProvider && editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "f2", | |
| "command": "-editor.action.rename", | |
| "when": "editorHasRenameProvider && editorTextFocus && !editorReadonly" | |
| }, | |
| { | |
| "key": "cmd+w", | |
| "command": "-workbench.action.closeWindow", | |
| "when": "!editorIsOpen && !multipleEditorGroups" | |
| }, | |
| { | |
| "key": "cmd+w", | |
| "command": "-workbench.action.closeActiveEditor" | |
| }, | |
| { | |
| "key": "cmd+k cmd+x", | |
| "command": "workbench.action.closeActiveEditor" | |
| }, | |
| { | |
| "key": "cmd+o", | |
| "command": "-workbench.action.files.openFolderViaWorkspace", | |
| "when": "!openFolderWorkspaceSupport && workbenchState == 'workspace'" | |
| }, | |
| { | |
| "key": "cmd+o", | |
| "command": "-workbench.action.files.openFileFolder", | |
| "when": "isMacNative && openFolderWorkspaceSupport" | |
| }, | |
| { | |
| "key": "cmd+o", | |
| "command": "-workbench.action.files.openLocalFileFolder", | |
| "when": "remoteFileDialogVisible" | |
| }, | |
| { | |
| "key": "o", | |
| "command": "list.focusUp", | |
| "when": "listFocus && !inputFocus" | |
| }, | |
| { | |
| "key": "k", | |
| "command": "-list.focusUp", | |
| "when": "listFocus && !inputFocus" | |
| }, | |
| { | |
| "key": "l", | |
| "command": "list.focusDown", | |
| "when": "listFocus && !inputFocus" | |
| }, | |
| { | |
| "key": "j", | |
| "command": "-list.focusDown", | |
| "when": "listFocus && !inputFocus" | |
| }, | |
| { | |
| "key": "cmd+q", | |
| "command": "workbench.action.toggleSidebarVisibility", | |
| "when": "sideBarFocus && editorIsOpen" | |
| }, | |
| { | |
| "key": "cmd+b", | |
| "command": "-workbench.action.toggleSidebarVisibility" | |
| }, | |
| { | |
| "key": "cmd+1", | |
| "command": "workbench.action.focusFirstEditorGroup" | |
| }, | |
| { | |
| "key": "cmd+1", | |
| "command": "-workbench.action.focusFirstEditorGroup" | |
| }, | |
| { | |
| "key": "cmd+2", | |
| "command": "workbench.action.focusSecondEditorGroup" | |
| }, | |
| { | |
| "key": "cmd+2", | |
| "command": "-workbench.action.focusSecondEditorGroup" | |
| }, | |
| { | |
| "key": "cmd+q", | |
| "command": "-workbench.action.quit" | |
| }, | |
| { | |
| "key": "cmd+k cmd+c", | |
| "command": "workbench.files.action.collapseExplorerFolders" | |
| }, | |
| { | |
| "key": "k", | |
| "command": "list.toggleExpand", | |
| "when": "listFocus && !inputFocus" | |
| }, | |
| { | |
| "key": ";", | |
| "command": "list.toggleExpand", | |
| "when": "listFocus && !inputFocus" | |
| }, | |
| { | |
| "key": "space", | |
| "command": "-list.toggleExpand", | |
| "when": "listFocus && !inputFocus" | |
| }, | |
| { | |
| "key": "o", | |
| "command": "-list.toggleExpand", | |
| "when": "listFocus && !inputFocus" | |
| }, | |
| { | |
| "key": "cmd+p", | |
| "command": "workbench.action.quickOpenSelectNext", | |
| "when": "inQuickOpen" | |
| }, | |
| { | |
| "key": "ctrl+n", | |
| "command": "-workbench.action.quickOpenSelectNext", | |
| "when": "inQuickOpen" | |
| }, | |
| { | |
| "key": "cmd+n", | |
| "command": "workbench.action.quickOpenSelectPrevious", | |
| "when": "inQuickOpen" | |
| }, | |
| { | |
| "key": "ctrl+p", | |
| "command": "-workbench.action.quickOpenSelectPrevious", | |
| "when": "inQuickOpen" | |
| }, | |
| { | |
| "key": "cmd+0", | |
| "command": "-workbench.action.focusSideBar" | |
| }, | |
| { | |
| "key": "cmd+q", | |
| "command": "revealInExplorer", | |
| "when": "editorTextFocus && !sideBarFocus" | |
| }, | |
| { | |
| "key": "cmd+n", | |
| "command": "fileutils.newFileAtRoot", | |
| "when": "!sideBarFocus" | |
| }, | |
| { | |
| "key": "d", | |
| "command": "deleteFile", | |
| "when": "sideBarFocus && !inputFocus" | |
| }, | |
| { | |
| "key": "cmd+backspace", | |
| "command": "-deleteFile", | |
| "when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceMoveableToTrash && !explorerResourceReadonly && !inputFocus" | |
| }, | |
| { | |
| "key": "cmd+l", | |
| "command": "selectNextSuggestion", | |
| "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" | |
| }, | |
| { | |
| "key": "down", | |
| "command": "-selectNextSuggestion", | |
| "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" | |
| }, | |
| { | |
| "key": "cmd+o", | |
| "command": "selectPrevSuggestion", | |
| "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" | |
| }, | |
| { | |
| "key": "up", | |
| "command": "-selectPrevSuggestion", | |
| "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" | |
| }, | |
| { | |
| "key": "cmd+down", | |
| "command": "-selectNextSuggestion", | |
| "when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus" | |
| }, | |
| { | |
| "key": "cmd+f12", | |
| "command": "-editor.action.goToImplementation", | |
| "when": "editorHasImplementationProvider && editorTextFocus && !isInEmbeddedEditor" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment