How to select between brackets (or quotes or …) in Vim?

前端 未结 9 2017
时光说笑
时光说笑 2020-12-12 08:55

I\'m sure there used to be a plugin for this kinda stuff, but now that I need it, I can\'t seem to find it (naturally), so I\'ll just ask nice and simple.

What is th

9条回答
  •  南方客
    南方客 (楼主)
    2020-12-12 09:44

    I've made a plugin vim-textobj-quotes: https://github.com/beloglazov/vim-textobj-quotes

    It provides text objects for the closest pairs of quotes of any type. Using only iq or aq it allows you to operate on the content of single ('), double ("), or back (`) quotes that currently surround the cursor, are in front of the cursor, or behind (in that order of preference). In other words, it jumps forward or backwards when needed to reach the quotes.

    It's easier to understand by looking at examples (the cursor is shown with |):

    1. Before: foo '1, |2, 3' bar; after pressing diq: foo '|' bar
    2. Before: foo| '1, 2, 3' bar; after pressing diq: foo '|' bar
    3. Before: foo '1, 2, 3' |bar; after pressing diq: foo '|' bar
    4. Before: foo '1, |2, 3' bar; after pressing daq: foo | bar
    5. Before: foo| '1, 2, 3' bar; after pressing daq: foo | bar
    6. Before: foo '1, 2, 3' |bar; after pressing daq: foo | bar

    The examples above are given for single quotes, the plugin works exactly the same way for double (") and back (`) quotes.

    You can also use any other operators: ciq, diq, yiq, viq, etc.

    Please have a look at the github page linked above for more details.

提交回复
热议问题