Re: / and : are not registers like in vim
In vim, a common task I do is create a complicated regexp with / and when I'm happy with it I want to use it in a search and replace command. To do this I:
:%s/<Ctrl-r>/
This puts the content of the / register on the command line. The / register contains the last thing that was searched for with /. Hence I don't need to memorize the complicated regexp I just created to be able to use it in a substitution.
This does not work in viemu since / and : are not registers that reflect the actions of those commands.
Last edited by mopi (2008-03-05 13:10:41)