Saving vim macros

一个人想着一个人 提交于 2019-12-17 07:58:15

问题


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


回答1:


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.

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



回答2:


For a more robust solution you can checkout Marvim.

It let's 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.




回答3:


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




回答4:


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.




回答5:


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>.



来源:https://stackoverflow.com/questions/2024443/saving-vim-macros

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!