How do you edit a previously recorded macro in Vim?
Answer
:let @a='<C-r>a'
Explanation
Paste the macro register contents with :let @a=' followed by <C-r>a to insert the current contents, edit them, and close the quote.
:let @a='<C-r>a'
Paste the macro register contents with :let @a=' followed by <C-r>a to insert the current contents, edit them, and close the quote.