Created
August 25, 2019 02:45
-
-
Save yoonbae81/acd940db954e9c8571720ea1bc25b1ba to your computer and use it in GitHub Desktop.
Atom vim-mode-plus keymap for overriding ctrl-a,x,c,w
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-text-editor.vim-mode-plus:not(.insert-mode)': | |
'ctrl-a': 'core:select-all' | |
'ctrl-x': 'core:cut' | |
'atom-text-editor.ex-mode-editor': | |
'ctrl-c': 'core:copy' | |
'atom-text-editor.vim-mode-plus': | |
'ctrl-c': 'core:copy' | |
'atom-text-editor.vim-mode-plus-input': | |
'ctrl-c': 'core:copy' | |
'atom-text-editor.vim-mode-plus-search': | |
'ctrl-c': 'core:copy' | |
'.platform-linux.go-to-line atom-text-editor[mini]': | |
'ctrl-w': 'core:close' | |
'atom-text-editor.vim-mode-plus.insert-mode': | |
'ctrl-w': 'core:close' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment