Vim Macros are awesome. But it's hard to get it right on the first try. MacroEditor is a simple vim plugin that allow you to edit your macros in a split window. And save it back easily when you are done.
MacroEditor only defines one command: MacroEdit
Say if you want to edit your macro in register q
, you can call:
:MacroEdit q
A split window will open at the top for editing. When you are done editing, save and close the window by calling:
:wq
If you want to discard this edit, simply call:
:q!
Enjoy vimming!
To install with pathogen.vim:
cd ~/.vim/bundle
git clone https://github.com/dohsimpson/vim-macroeditor
MIT license