The part up to "/e" was rendered correctly.. It is direct slash, not backslash.
After it you should press (in Vim):
Code:
<Ctrl-V> <Enter> <?> <Space> <Ctrl-V> <Enter> <a> <Ctrl-V>
<Enter> <Ctrl-V> <Esc> <DoubleQuote ">
Keypresses are space-separated and <>-enclosed.
Argument is column number. What it does is cyclically simulates keypresses.
/.\{80}/e<Enter>
-- this looks for a line 80 characters long and puts cursor on its end.
? <Enter>
-- this goes to last space before that position.
a<Enter><Esc>
--this adds newline character after this space.
You should see:
Code:
exe "normal /.\\{".a:n."}/e^M? ^Ma^M^["