* [EMAIL PROTECTED] [2007.03.23 19:45]: > I was thinking that there should be a way to > take the register lines and automatically turn > them into an noremap (including adding the @ to > start register playback). Has anyone perfected > this?
If you want your mapping to follow the (possibly changing) content of q: map <F2> @q If you want your mapping to stay fixed even if register q changes: :exe "map <F2> " . expand(@q) and then you can map that... map <F3> :exe "map <F2> " . expand(@q)<CR> HTH, -- JR