Created
November 21, 2017 05:29
-
-
Save tylercasson/a463e7f4d51927f818d5968493a71ce3 to your computer and use it in GitHub Desktop.
Atom Keybindings
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
'atom-workspace atom-text-editor': | |
'ctrl-shift-backspace': 'editor:delete-to-beginning-of-line' | |
# https://github.com/atom/atom/issues/4026#issuecomment-137971196 | |
'ctrl-left': 'editor:move-to-previous-word-boundary' | |
'ctrl-right': 'editor:move-to-next-word-boundary' | |
'ctrl-shift-left': 'editor:select-to-previous-word-boundary' | |
'ctrl-shift-right': 'editor:select-to-next-word-boundary' | |
'ctrl-backspace': 'editor:delete-to-previous-word-boundary' | |
'ctrl-delete': 'editor:delete-to-next-word-boundary' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment