Skip to content

Instantly share code, notes, and snippets.

@idursun
Created July 1, 2016 08:16
Show Gist options
  • Save idursun/f02475b1b01fee3161638d8376ca528b to your computer and use it in GitHub Desktop.
Save idursun/f02475b1b01fee3161638d8376ca528b to your computer and use it in GitHub Desktop.
My Visual Studio code key bindings
// Place your key bindings in this file to overwrite the defaults
[{
"key": "alt+8",
"command": "workbench.action.gotoSymbol"
},{
"key": "shift+alt+t",
"command": "workbench.action.showAllSymbols"
},{
"key": "ctrl+r ctrl+r",
"command": "editor.action.rename"
},{
"key": "ctrl+w",
"command": "editor.action.smartSelect.grow",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+w",
"command": "editor.action.smartSelect.shrink",
"when": "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment