How can I quickly quote/unquote words and change quoting (e.g. from ' to ") in Vim? I know about surround.vim plugin, but I would like to use just Vim.
|
|
|||||
|
|
surround.vim is going to be your easiest answer. If you are truly set against using it, here are some examples for what you can do. Not necessarily the most efficient, but that's why surround.vim was written.
|
||||
|
It was easier for me to do it this way
|
|||||
|
|
In addition to the other commands, this will enclose all words in a line in double quotes (as per your comment)
or if you want to reduce the number of backslashes, you can put a
|
|||
|
|
|
Here's some mapping that could help:
If you haven't changed the mapleader variable, then activate the mapping with |
|||
|
|
|
I don't know any builtin vim command for this, but using |
|||
|
|
|
how about this?
|
|||
|
I'm using nnoremap in my .vimrc To single quote a word:
To remove quotes (works on double quotes as well):
Rule to remember: 'sq' = single quote. |
|||
|
|