In vim, is there a plugin to use % to match the corresponding double quote (")?

前端 未结 5 1096
北海茫月
北海茫月 2020-12-24 11:08

The % key is one of the best features of vim: it lets you jump from { to }, [ to ], and so on.

Howeve

相关标签:
5条回答
  • 2020-12-24 11:38

    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.

    0 讨论(0)
  • 2020-12-24 11:40

    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!

    0 讨论(0)
  • 2020-12-24 11:52

    I have found this technique very useful for going to the start/end of a very long quoted string.

    1. when cursor is inside the string, visually select the whole string using vi" or vi'
    2. go to start/end of the string by pressing o
    3. press escape to exit visual select mode

    this actually takes the cursor next to the start/end quote character, but still feels pretty helpful.

    Edit

    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

    0 讨论(0)
  • 2020-12-24 11:59

    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

    0 讨论(0)
  • 2020-12-24 12:01

    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.

    0 讨论(0)
提交回复
热议问题