Thursday, October 8, 2015

Re: Save and source and vimscript with a keymap..

Dooh, of course.  Thanks Nikolay.

On Thu, Oct 8, 2015 at 11:06 AM, Nikolay Pavlov <zyx.vim@gmail.com> wrote:
2015-10-08 20:42 GMT+03:00 Sonny Chee <sonny.chee@gmail.com>:
> 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 vim_use+unsubscribe@googlegroups.com.
> 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 a topic in the Google Groups "vim_use" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/vim_use/nBnuanIE3H8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--
Sonny.
----------------------------------------------------------------------------
Be true to your work, your word, and your friend. Henry David Thoreau.

--
--
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 vim_use+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments: