The Computer Oracle

Vim enclose in quotes

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: The World Wide Mind

--

Chapters
00:00 Vim Enclose In Quotes
00:14 Answer 1 Score 28
01:56 Answer 2 Score 23
03:30 Accepted Answer Score 19
04:34 Answer 4 Score 3
05:34 Answer 5 Score 2
05:57 Thank you

--

Full question
https://superuser.com/questions/782391/v...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#vim

#avk47



ANSWER 1

Score 28


You should research more. What Vim command(s) can be used to quote/unquote words?

Quoting:

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.

  • Quote a word, using single quotes ciw'Ctrl+r"'
    • ciw - Delete the word the cursor is on, and end up in insert mode.
    • ' - add the first quote.
    • Ctrl+r" - Insert the contents of the " register, aka the last yank/delete.
    • ' - add the closing quote.

  • Unquote a word that's enclosed in single quotes di'hPl2x
    • di' - Delete the word enclosed by single quotes.
    • hP - Move the cursor left one place (on top of the opening quote) and put the just deleted text before the quote.
    • l - Move the cursor right one place (on top of the opening quote).
    • 2x - Delete the two quotes.

  • Change single quotes to double quotes va':s/\%V'\%V/"/g
    • va' - Visually select the quoted word and the quotes.
    • :s/ - Start a replacement.
    • \%V'\%V - Only match single quotes that are within the visually selected region.
    • /"/g - Replace them all with double quotes.



ANSWER 2

Score 23


The command sequence cw""<ESC>P is the close thing that can do a surrounding of text and works by cutting the word (string of alphanumeric characters: a-z, A-Z, 0-9, including the _ [underscore]), then inserts the text "", and hitting the escape key (<ESC> to escape out of insert mode one then is able to paste before the cursor. Thus the command breaks down to:

c - cut into register

w - regex match \w

"" - insert two " characters at current cursor position

<ESC> - VIM shorthand for hitting the escape key. In this context, return to command mode

P - paste current register

However, in the case of longer sets of strings on the current line that one wishes to surround, one would need to use substitution regex commands with a capture group such as:

:s/\(\w\+\)/"\1"/g

This command stores the resulting matched regex captured as group '1' and preform substitution to insert the group's contents inside your quotes. Thus, given the text:

fubar: 1

Becomes:

"fubar": 1

The vim intro help file is one of the best resources for anyone, along with the :help command.




ACCEPTED ANSWER

Score 19


This is intended to answer the specific question that you asked. You state that you have visually selected some text and want to surround it with quotes. To do that, run:

:s/\%V\(.*\)\%V/"\1"/

To break that into parts:

  • : allows you to enter ex commands.

  • s/old/new/ is the usual substitute command.

  • \%V is an under-documented atom to mark the beginning of the selected text

  • \(.*\) selects everything and save it into selection 1.

  • The second \%V signifies the end of the selected text.

  • The replacement text is everyting that was selected, which is stored in \1, surrounded by quotes: "\1".

This command applies line by line. So, you may get unwanted results if the selected text extends over multiple lines.




ANSWER 4

Score 3


Here's how I quoted a few of my visual selections:

  1. While in VISUAL mode select the text you need to quote, then press qqc""<Esc>Pq

    • qq begins recording your actions into record q
    • c puts selected text in a register and switches to INPUT mode
    • "" puts symbols you need to enclose the text with
    • <Esc> switches to NORMAL mode
    • P puts the text from the register in the cursor position, in-between quotes
    • q denotes the end of actions recording
  2. Now, whithin the same session, you will be able to quote any visual block by just typing @q, which playbacks our previosly recorded actions

  3. ???

  4. After using @q once you will be able issue @@ (repeat previous action) to quote subsequent visual selections




ANSWER 5

Score 2


Don't use visual mode. Simply change the text in the parens to "", and then paste the deleted text in between. ci)""<Esc>P

If you want to use visual mode, it works the same, you just drop the 'i)' part: c""<Esc>P

(<Esc> means hit the escape key)