Last active
June 14, 2016 19:34
-
-
Save rtorr/81d5f574410f75517176863514fac3b6 to your computer and use it in GitHub Desktop.
vscode keybindings for ubuntu to feel more likes OSX's keybindings
This file contains 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": "ctrl+1 ctrl+1", | |
"command": "workbench.action.toggleSidebarVisibility" | |
}, | |
{ | |
"key": "alt+/", | |
"command": "editor.action.commentLine", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+2", | |
"command": "workbench.action.focusSideBar" | |
}, | |
{ | |
"key": "ctrl+w ctrl+w", | |
"command": "workbench.action.cycleEditor" | |
}, | |
{ | |
"key": "ctrl+v", | |
"command": "workbench.action.splitEditor", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+w", | |
"command": "workbench.action.closeActiveEditor", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+a", | |
"command": "editor.action.selectAll" | |
}, | |
{ | |
"key": "alt+c", | |
"command": "editor.action.clipboardCopyAction", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+x", | |
"command": "editor.action.clipboardCutAction", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+r", | |
"command": "editor.action.clipboardPasteAction", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+s", | |
"command": "workbench.action.files.save" | |
}, | |
{ | |
"key": "alt+shift+s", | |
"command": "workbench.action.files.saveAs" | |
}, | |
{ | |
"key": "shift+alt+up", | |
"command": "editor.action.copyLinesUpAction", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "shift+alt+down", | |
"command": "editor.action.copyLinesDownAction", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "alt+z", | |
"command": "undo" | |
}, | |
{ | |
"key": "alt+shift+z", | |
"command": "redo", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "suprt+f", | |
"command": "actions.find" | |
}, | |
{ | |
"key": "alt+g", | |
"command": "editor.action.nextMatchFindAction", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "alt+shift+g", | |
"command": "editor.action.nextSelectionMatchFindAction", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "alt+k m", | |
"command": "workbench.action.editor.changeLanguageMode" | |
}, | |
{ | |
"key": "alt+k p", | |
"command": "workbench.action.files.copyPathOfActiveFile" | |
}, | |
{ | |
"key": "alt+n", | |
"command": "workbench.action.files.newUntitledFile" | |
}, | |
{ | |
"key": "alt+o", | |
"command": "workbench.action.files.openFile" | |
}, | |
{ | |
"key": "alt+k r", | |
"command": "workbench.action.files.revealActiveFileInWindows" | |
}, | |
{ | |
"key": "alt+s", | |
"command": "workbench.action.files.save" | |
}, | |
{ | |
"key": "alt+shift+s", | |
"command": "workbench.action.files.saveAs" | |
}, | |
{ | |
"key": "alt+k o", | |
"command": "workbench.action.files.showOpenedFileInNewWindow" | |
}, | |
{ | |
"key": "alt+1", | |
"command": "workbench.action.focusFirstEditor" | |
}, | |
{ | |
"key": "alt+shift+alt+left", | |
"command": "workbench.action.focusLeftEditor" | |
}, | |
{ | |
"key": "alt+shift+alt+right", | |
"command": "workbench.action.focusRightEditor" | |
}, | |
{ | |
"key": "alt+2", | |
"command": "workbench.action.focusSecondEditor" | |
}, | |
{ | |
"key": "alt+0", | |
"command": "workbench.action.focusSideBar" | |
}, | |
{ | |
"key": "alt+3", | |
"command": "workbench.action.focusThirdEditor" | |
}, | |
{ | |
"key": "alt+g", | |
"command": "workbench.action.gotoLine" | |
}, | |
{ | |
"key": "alt+shift+o", | |
"command": "workbench.action.gotoSymbol" | |
}, | |
{ | |
"key": "alt+k v", | |
"command": "workbench.action.markdown.openPreviewSideBySide" | |
}, | |
{ | |
"key": "alt+shift+v", | |
"command": "workbench.action.markdown.togglePreview" | |
}, | |
{ | |
"key": "alt+k left", | |
"command": "workbench.action.moveActiveEditorLeft" | |
}, | |
{ | |
"key": "alt+k right", | |
"command": "workbench.action.moveActiveEditorRight" | |
}, | |
{ | |
"key": "alt+alt+-", | |
"command": "workbench.action.navigateBack" | |
}, | |
{ | |
"key": "alt+shift+-", | |
"command": "workbench.action.navigateForward" | |
}, | |
{ | |
"key": "alt+shift+n", | |
"command": "workbench.action.newWindow" | |
}, | |
{ | |
"key": "alt+shift+tab", | |
"command": "workbench.action.openPreviousEditor" | |
}, | |
{ | |
"key": "alt+tab", | |
"command": "workbench.action.openPreviousEditor" | |
}, | |
{ | |
"key": "alt+shift+h", | |
"command": "workbench.action.output.toggleOutput" | |
}, | |
{ | |
"key": "alt+e", | |
"command": "workbench.action.quickOpen" | |
}, | |
{ | |
"key": "alt+p", | |
"command": "workbench.action.quickOpen" | |
}, | |
{ | |
"key": "alt+tab", | |
"command": "workbench.action.quickOpenNavigateNext", | |
"when": "inQuickOpen" | |
}, | |
{ | |
"key": "alt+e", | |
"command": "workbench.action.quickOpenNavigateNext", | |
"when": "inQuickOpen" | |
}, | |
{ | |
"key": "alt+p", | |
"command": "workbench.action.quickOpenNavigateNext", | |
"when": "inQuickOpen" | |
}, | |
{ | |
"key": "alt+shift+j", | |
"command": "workbench.action.search.toggleQueryDetails", | |
"when": "searchViewletVisible" | |
}, | |
{ | |
"key": "alt+t", | |
"command": "workbench.action.showAllSymbols" | |
}, | |
{ | |
"key": "f1", | |
"command": "workbench.action.showCommands" | |
}, | |
{ | |
"key": "alt+shift+p", | |
"command": "workbench.action.showCommands" | |
}, | |
{ | |
"key": "alt+shift+m", | |
"command": "workbench.action.showErrorsWarnings" | |
}, | |
{ | |
"key": "alt+\\", | |
"command": "workbench.action.splitEditor" | |
}, | |
{ | |
"key": "alt+shift+b", | |
"command": "workbench.action.tasks.build" | |
}, | |
{ | |
"key": "alt+shift+c", | |
"command": "workbench.action.terminal.openNativeConsole" | |
}, | |
{ | |
"key": "alt+`", | |
"command": "workbench.action.terminal.toggleTerminal" | |
}, | |
{ | |
"key": "f11", | |
"command": "workbench.action.toggleFullScreen" | |
}, | |
{ | |
"key": "alt+j", | |
"command": "workbench.action.togglePanel" | |
}, | |
{ | |
"key": "alt+b", | |
"command": "workbench.action.toggleSidebarVisibility" | |
}, | |
{ | |
"key": "alt+=", | |
"command": "workbench.action.zoomIn" | |
}, | |
{ | |
"key": "alt+-", | |
"command": "workbench.action.zoomOut" | |
}, | |
{ | |
"key": "alt+shift+y", | |
"command": "workbench.debug.action.toggleRepl" | |
}, | |
{ | |
"key": "alt+k enter", | |
"command": "workbench.files.action.addToWorkingFiles" | |
}, | |
{ | |
"key": "alt+k alt+w", | |
"command": "workbench.files.action.closeAllFiles" | |
}, | |
{ | |
"key": "alt+k w", | |
"command": "workbench.files.action.closeFile" | |
}, | |
{ | |
"key": "alt+k alt+shift+w", | |
"command": "workbench.files.action.closeOtherFiles" | |
}, | |
{ | |
"key": "alt+k e", | |
"command": "workbench.files.action.focusWorkingFiles" | |
}, | |
{ | |
"key": "alt+k down", | |
"command": "workbench.files.action.openNextWorkingFile" | |
}, | |
{ | |
"key": "alt+k up", | |
"command": "workbench.files.action.openPreviousWorkingFile" | |
}, | |
{ | |
"key": "alt+shift+t", | |
"command": "workbench.files.action.reopenClosedFile" | |
}, | |
{ | |
"key": "alt+k alt+p", | |
"command": "workbench.files.action.workingFilesPicker" | |
}, | |
{ | |
"key": "alt+shift+d", | |
"command": "workbench.view.debug" | |
}, | |
{ | |
"key": "alt+shift+e", | |
"command": "workbench.view.explorer" | |
}, | |
{ | |
"key": "alt+shift+g", | |
"command": "workbench.view.git" | |
}, | |
{ | |
"key": "alt+shift+f", | |
"command": "workbench.view.search" | |
}, | |
{ | |
"key": "f11", | |
"command": "workbench.action.debug.stepInto", | |
"when": "inDebugMode" | |
}, | |
{ | |
"key": "alt+shift+tab", | |
"command": "workbench.action.quickOpenNavigatePrevious", | |
"when": "inQuickOpen" | |
}, | |
{ | |
"key": "alt+shift+e", | |
"command": "workbench.action.quickOpenNavigatePrevious", | |
"when": "inQuickOpen" | |
}, | |
{ | |
"key": "alt+shift+p", | |
"command": "workbench.action.quickOpenNavigatePrevious", | |
"when": "inQuickOpen" | |
}, | |
{ | |
"key": ".", | |
"command": "^acceptSelectedSuggestion", | |
"when": "editorTextFocus && suggestWidgetVisible && suggestionSupportsAcceptOnKey && editorLangId == 'typescript'" | |
}, | |
{ | |
"key": "ctrl+a", | |
"command": "editor.action.format", | |
"when": "editorTextFocus" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment