The % key is one of the best features of vim: it lets you jump from {
to }
, [
to ]
, and so on.
Howeve
I'd like to expand on Greg's answer, and introduce the surround.vim plugin.
Suppose that rather than editing the contents of your quotes, you want to modify the "
characters themselves. Lets say you want to change from double-quotes to single-quotes.
foo(bar, "baz quux")
^
The surround plugin allows you to change this to
foo(bar, 'baz quux')
^
just by executing the following: cs"'
(which reads: "change the surrounding double-quotes to single-quotes").
You could also delete the quote marks simply by running: ds"
(which reads: "delete the surrounding double-quotes).
There is a good introduction to the surround plugin here.
Depending on your reason for needing this, there may be a better way to accomplish what you're looking for. For example, if you have the following code:
foo(bar, "baz quux")
^
and your cursor happens to be at the ^
, and you want to replace everything inside the quotes with something else, use ci"
. This uses the Vim "text objects" to change (c
) everything inside (i
) the quotes ("
) and puts you in insert mode like this:
foo(bar, "")
^
Then you can start typing the replacement text. There are many other text objects that are really useful for this kind of shortcut. Learn (and use) one new Vim command per week, and you'll be an expert in no time!
I have found this technique very useful for going to the start/end of a very long quoted string.
vi"
or vi'
o
this actually takes the cursor next to the start/end quote character, but still feels pretty helpful.
Adding Stefan's excellent comment here which is a better option for anyone who may miss the comment.
If you use va" (and va') then it will actually visually select the quotes itself as well.
– Stefan van den Akker
I know this question is old but here is a plugin to use % to match the corresponding double quote:
https://github.com/airblade/vim-matchquote
Greg's answer was very useful but i also like the 'f' and 'F' commands that move the cursor forward and backward to the character you press after the command.
So press f" to move to the next " character and F" to move to the previous one.