2015-10-08 20:42 GMT+03:00 Sonny Chee <[email protected]>: > Hey Guys, > > I would like to save the current file (a vim script) and source it > simultaneously. The following works in normal mode. > > :w % | :source % > > However, when I attempt to define a mapping for it in my .vimrc I get an > error message (Error detected while processing .vimrc) > > nnoremap <leader>s :w % | source %<cr>
You must escape bar: this command is read as nnoremap <Leader>s :w %<Space> source %<cr> . There are three variants of escaping: 1. `\|`. 2. `^V|` where `^V` is *literal* 0x16 byte. 3. `<Bar>`. I usually use the first or the third. > > Any help would be appreciated. > > -- > -- > 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/d/optout. -- -- 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/d/optout.
