Skip to content

Instantly share code, notes, and snippets.

@rtorr
Last active January 3, 2018 06:20
Show Gist options
  • Save rtorr/a8b030999f7122284a99b3dc6b7e6266 to your computer and use it in GitHub Desktop.
Save rtorr/a8b030999f7122284a99b3dc6b7e6266 to your computer and use it in GitHub Desktop.
mac to windows vscode keymap
[
{
"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