Created
November 6, 2017 16:55
-
-
Save valdergallo/b49296cd519c4576a33b61b0a4f75e6a to your computer and use it in GitHub Desktop.
VSCode keybinds for ubunto and sublime
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
// Place your key bindings in this file to overwrite the defaults | |
[ | |
{ | |
"key": "ctrl+alt+d", | |
"command": "editor.action.addSelectionToNextFindMatch", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+d", | |
"command": "editor.action.deleteLines", | |
"when": "editorFocus" | |
}, | |
{ | |
"key": "ctrl+g", | |
"command": "editor.action.goToTypeDefinition", | |
"when": "editorFocus" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment