On 15:27 Sat 30 Mar , Canis Major wrote: > Hello, > > I have problem to execute the following command > execute ":s/foo/\<C-r>\"/g\<Left>\<Left>" > The result is not the value of unnamed register. How to perform the <C- > r>" key sequence by execute command? > > -- > -- > You received this message from the "vim_use" maillist. > Do not top-post! Type your reply below the text you are replying to. > For more information, visit http://www.vim.org/maillist.php > > --- > You received this message because you are subscribed to the Google Groups > "vim_use" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. >
Hi, You can use CTRL-r" in the command line in the same way as in the insert mode. Otherwise, you can: :s/foo/\=@"/g See ':help sub-replace-\='. Best, Marcin -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_use" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
