Closed ELLIOTTCABLE closed 6 years ago
Forgive me if this is completely obvious to everyone else, as perhaps I'm just a bit of a vim-noob …
… but why is :EMCommandLineNoreMap available at runtime, but explodes if I try to include it in my .vimrc?
:EMCommandLineNoreMap
.vimrc
Error detected while processing /Users/ec/.vimrc: line 197: E492: Not an editor command: EMCommandLineNoreMap <Space> <CR>
I moved this into an autocmd, and it solved the issue — I believe this may be worth mentioning in the docs:
augroup easymotion-keymap | au! au VimEnter * EMCommandLineNoreMap <Space> <CR> augroup END
Forgive me if this is completely obvious to everyone else, as perhaps I'm just a bit of a vim-noob …
… but why is
:EMCommandLineNoreMap
available at runtime, but explodes if I try to include it in my.vimrc
?