Skip to content

Instantly share code, notes, and snippets.

@yoonbae81
Created August 25, 2019 02:45
Show Gist options
  • Save yoonbae81/acd940db954e9c8571720ea1bc25b1ba to your computer and use it in GitHub Desktop.
Save yoonbae81/acd940db954e9c8571720ea1bc25b1ba to your computer and use it in GitHub Desktop.
Atom vim-mode-plus keymap for overriding ctrl-a,x,c,w
'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