VimTrick: Reselect last visual selection
Colin Bartlett

Colin Bartlett @cbartlett

About: I help IT teams monitor the cloud with StatusGator. Vim user and author at VimTricks.com

Location:
New York, NY, USA
Joined:
Apr 25, 2020

VimTrick: Reselect last visual selection

Publish Date: May 28 '20
2 0

Often times I’m working with a visual selection of text and need to operate on that selection again. Most often this is because I’m working on a substitution pattern and don’t quite have it right. I’m swapping out some text and the regex is a bit off and I need to try again. Other times I might want to perform a substitution and then perhaps format the section with =.

Fortunately, Vim provides gv to reselect the last visual selection.

Consider the following file. It is not valid JSON. We’d like to format it as valid JSON, and improve the readability by indenting better.

The animation shows the following steps:

  • Visual selection: shift-v %
  • Substitution: s/\(.*\):/"\1":/g
  • Reselect last visual selection: gv
  • Format selection: =

Does anyone have a good mnemonic for gv? Something to help me internalize this? Maybe “aGain Visual” but that’s a bit of a stretch. Let me know in the comments.

And if you like this trick, I'm publishing a twice-weekly newsletter called VimTricks.

Comments 0 total

    Add comment