I use the following Vim macro a lot (it puts the current line inside tags):
I<e>^[A</e>
So I saved it into my .vimrc
let @e='I<e>^[A</e>'
But it does not work.
The ^[ part means Escape but it is not understood as such when using .vimrc
How can I save this macro, or any macro that contains "Escape" ?