Created
December 9, 2015 18:07
-
-
Save bpedman/a4b3db1655e5dac15697 to your computer and use it in GitHub Desktop.
Visual Studio Code - Eclipse Keybindings (Mac)
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.cutLines", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "cmd+o", | |
"command": "workbench.action.gotoSymbol" | |
}, | |
{ | |
"key": "cmd+[", | |
"command": "workbench.action.navigateBack" | |
}, | |
{ | |
"key": "cmd+]", | |
"command": "workbench.action.navigateForward" | |
}, | |
{ | |
"key": "cmd+shift+f", | |
"command": "editor.action.format", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "cmd+l", | |
"command": "workbench.action.gotoLine" | |
}, | |
{ | |
"key": "F3", | |
"command": "editor.action.goToDeclaration" | |
}, | |
{ | |
"key": "cmd+shift+g", | |
"command": "editor.action.referenceSearch.trigger" | |
}, | |
{ | |
"key": "cmd+alt+r", | |
"command": "editor.action.rename", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "cmd+shift+r", | |
"command": "workbench.action.quickOpen" | |
}, | |
{ | |
"key": "cmd+shift+t", | |
"command": "workbench.action.quickOpen" | |
}, | |
{ | |
"key": "cmd+f", | |
"command": "actions.find" | |
}, | |
{ | |
"key": "alt+left", | |
"command": "subwordNavigation.cursorSubwordLeft" | |
}, | |
{ | |
"key": "alt+right", | |
"command": "subwordNavigation.cursorSubwordRight" | |
}, | |
{ | |
"key": "alt+left", | |
"command": "subwordNavigation.cursorSubwordLeft" | |
}, | |
{ | |
"key": "shift+alt+left", | |
"command": "subwordNavigation.cursorSubwordLeftSelect" | |
}, | |
{ | |
"key": "shift+alt+right", | |
"command": "subwordNavigation.cursorSubwordRightSelect" | |
}, | |
{ | |
"key": "alt+backspace", | |
"command": "subwordNavigation.deleteSubwordLeft" | |
}, | |
{ | |
"key": "cmd+d", | |
"command": "editor.action.deleteLines", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "cmd+shift+]", | |
"command": "workbench.files.action.openNextWorkingFile" | |
}, | |
{ | |
"key": "cmd+shift+[", | |
"command": "workbench.files.action.openPreviousWorkingFile" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just a heads up you have
cmd+d
listed twice for the same context. The first instance,editor.action.cutLines
is incorrect.