Skip to content

Instantly share code, notes, and snippets.

@but0n
Created September 22, 2018 06:06
Show Gist options
  • Save but0n/f816e80642821b9763074200d707043a to your computer and use it in GitHub Desktop.
Save but0n/f816e80642821b9763074200d707043a to your computer and use it in GitHub Desktop.
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+shift+b",
"command": "cursorLeftSelect",
"when": "textInputFocus"
},
{
"key": "shift+left",
"command": "-cursorLeftSelect",
"when": "textInputFocus"
},
{
"key": "ctrl+shift+f",
"command": "cursorRightSelect",
"when": "textInputFocus"
},
{
"key": "shift+right",
"command": "-cursorRightSelect",
"when": "textInputFocus"
},
{
"key": "alt+b",
"command": "cursorWordLeft"
},
{
"key": "shift+alt+b",
"command": "cursorWordLeftSelect"
},
{
"key": "alt+f",
"command": "cursorWordRight"
},
{
"key": "shift+alt+f",
"command": "cursorWordRightSelect"
},
{
"key": "ctrl+shift+e",
"command": "cursorEndSelect",
"when": "textInputFocus"
},
{
"key": "shift+cmd+right",
"command": "-cursorEndSelect",
"when": "textInputFocus"
},
{
"key": "ctrl+shift+a",
"command": "cursorHomeSelect",
"when": "textInputFocus"
},
{
"key": "shift+cmd+left",
"command": "-cursorHomeSelect",
"when": "textInputFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment