Saving vim macros

VimEditorMacros

Vim Problem Overview


Does anyone know how to properly save/reuse macros recorded inside of a vim editor?

Vim Solutions


Solution 1 - Vim

Use q followed by a letter to record a macro. This just goes into one of the copy/paste registers so you can paste it as normal with the "xp or "xP commands in normal mode, where x is the register to paste.

To save it you open up .vimrc and paste the contents, then the register will be around the next time you start vim.
The format is something like:

let @q = 'macro contents'

Be careful of quotes, though. They would have to be escaped properly.

So to save a macro you can do:

  • From normal mode: qq
  • enter whatever commands
  • From normal mode: q
  • open .vimrc
  • "qp to insert the macro into your let @q = '...' line

Solution 2 - Vim

For a more robust solution you can checkout Marvim.

It lets you save a macro in a specific namespace (or use the filetype as a default namespace) and you can later search for your saved macros and load them in a register ready for use.

If you reuse a lot of macros, this is pretty helpful.

Solution 3 - Vim

Write your macros inside your ~/.vimrc, to define a macro launched by CTRL+O by example, add the following line to your ~/.vimrc :

map <C-O> MACROTEXT

when you record a macro by typing qa you can retrieve your macro text by typing "ap

Solution 4 - Vim

The :mkexrc (or :mkvimrc) command can be used to save all the current :map and :set settings to a file. See :help mkexrc for details.

Solution 5 - Vim

You can do like this on your ~/.vimrc

:let @a="iHello World!\<CR>bye\<Esc>"

NOTE: You must use double quotes to be able to use special keys like in \<this silly example>.

Solution 6 - Vim

Vim 8.0 on MacOS Mojave (10.14.6) actually persists macros and named buffers automatically (by default, although I haven't looked for a way of turning this behavior off). Closing a Vim session will update the ~/.viminfo file with any named buffers / macros.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionjnadro52View Question on Stackoverflow
Solution 1 - VimDan OlsonView Answer on Stackoverflow
Solution 2 - VimrandomView Answer on Stackoverflow
Solution 3 - VimRaoul SupercopterView Answer on Stackoverflow
Solution 4 - VimMatthew SlatteryView Answer on Stackoverflow
Solution 5 - VimSergioAraujoView Answer on Stackoverflow
Solution 6 - VimMarkView Answer on Stackoverflow