Skip to content

Instantly share code, notes, and snippets.

@mohnish82
Created August 7, 2021 20:42
Show Gist options
  • Save mohnish82/67e53efdb6733145d2697b344b1a8c7f to your computer and use it in GitHub Desktop.
Save mohnish82/67e53efdb6733145d2697b344b1a8c7f to your computer and use it in GitHub Desktop.
Vscode key mapping
[
{
"key": "ctrl+left",
"command": "cursorWordPartLeft",
"when": "textInputFocus"
},
{
"key": "ctrl+right",
"command": "cursorWordPartRight",
"when": "textInputFocus"
},
{
"key": "ctrl+shift+left",
"command": "cursorWordPartLeftSelect",
"when": "textInputFocus"
},
{
"key": "ctrl+shift+right",
"command": "cursorWordPartRightSelect",
"when": "textInputFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment