Last active
January 3, 2018 06:20
-
-
Save rtorr/a8b030999f7122284a99b3dc6b7e6266 to your computer and use it in GitHub Desktop.
mac to windows vscode keymap
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": "alt+\\ alt+\\", | |
"command": "workbench.action.toggleSidebarVisibility" | |
}, | |
{ | |
"key": "cmd+2", | |
"command": "workbench.action.focusSideBar" | |
}, | |
{ | |
"key": "ctrl+w ctrl+w", | |
"command": "workbench.action.navigateEditorGroups" | |
}, | |
{ | |
"key": "ctrl+l", | |
"command": "workbench.action.splitEditor" | |
}, | |
{ | |
"key": "alt+w", | |
"command": "workbench.action.closeEditorsInGroup" | |
}, | |
{ | |
"key": "shift+enter", | |
"command": "editor.action.insertLineAfter", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+d ctrl+d", | |
"command": "editor.action.deleteLines", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+right", | |
"command": "cursorWordRight", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+tab", | |
"command": "workbench.action.openPreviousEditorFromHistory" | |
}, | |
{ | |
"key": "ctrl+tab", | |
"command": "workbench.action.quickOpenNavigateNext", | |
"when": "inQuickOpen" | |
}, | |
{ | |
"key": "ctrl+e", | |
"command": "cursorEnd" | |
}, | |
{ | |
"key": "ctrl+a", | |
"command": "cursorHome" | |
}, | |
{ | |
"key": "alt+right", | |
"command": "cursorEnd" | |
}, | |
{ | |
"key": "alt+left", | |
"command": "cursorHome" | |
}, | |
{ | |
"key": "alt+e", | |
"command": "workbench.action.openPreviousEditorFromHistory", | |
}, | |
{ | |
"key": "alt+e", | |
"command": "workbench.action.quickOpenNavigateNext", | |
"when": "inQuickOpen" | |
}, | |
{ | |
"key": "alt+s", | |
"command": "workbench.action.files.save" | |
}, | |
{ | |
"key": "alt+a", | |
"command": "editor.action.selectAll" | |
}, | |
{ | |
"key": "alt+v", | |
"command": "editor.action.clipboardPasteAction" | |
}, | |
{ | |
"key": "alt+c", | |
"command": "editor.action.clipboardCopyAction" | |
}, | |
{ | |
"key": "alt+x", | |
"command": "editor.action.clipboardCutAction" | |
}, | |
{ | |
"key": "alt+r", | |
"command": "workbench.action.tasks.runTask" | |
}, | |
{ | |
"key": "alt+b", | |
"command": "workbench.action.tasks.build" | |
}, | |
{ | |
"key": "alt+t", | |
"command": "workbench.action.tasks.test" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment