A common annoyance when setting up atom on a new machine is that one of my favourite packages, vim-mode-plus keeps overriding a native setting, that I want to use. The nice select the next occurence of this word or variable feature is overridden by vim-mode-plus:scroll-half-screen-down
, which honestly isn’t that useful at all.
All you need to do to revert the plugin from occupying a key binding is to open your keymap.cson
and to insert the following:
'atom-text-editor.vim-mode-plus:not(.insert-mode)':
'ctrl-d': 'native!'
Continue reading “Quick Tip: Keep ‘Find Next Word’ with Vim Mode”