Created
September 22, 2018 06:06
-
-
Save but0n/f816e80642821b9763074200d707043a to your computer and use it in GitHub Desktop.
This file contains 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+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