How do you reuse a visual mode selection?

170

29

Often when editing code, I'll select a block in visual mode and do a search and replace over the block. After I make the changes, however, it leaves visual mode. How do you do a new find and replace over the same selection?

labyrinth

Posted 2010-12-10T16:58:32.090

Reputation: 2 116

Well I found one way, but it's a little cumbersome: :'<,'>s/old/new/g Any way to do this w/o having to type in the '<,'> ? – labyrinth – 2010-12-10T17:14:43.713

Answers

254

You may re-select the last selected visual area with gv.

Heptite

Posted 2010-12-10T16:58:32.090

Reputation: 16 267

4Awesome! @Heptite how to find this command by myself w\o Stackoverflow? – skywinder – 2016-03-01T09:16:38.677

6@skywinder :help gv – Heptite – 2016-03-01T12:20:54.620

6@Heptite: I'm not sure if you're being tongue in cheek here, but that command shows you what :gv does once you know about it. But what if I didn't? Teach a (wo)man to fish and all that. – Ben Thul – 2017-11-10T04:01:26.753

@BenThul: I think I misunderstood the question. I know about about many of Vim's features simply by reading through the bulk of the documentation over time, starting with ":help". – Heptite – 2017-11-10T04:02:48.070

4:help select-visual should lead you to the correct manual inside vim @skywinder. – None – 2018-04-25T18:25:32.177

14

gv is definitely the fastest method (use last selection), but if you want a stable saved selection region (or several), you can always create macros.

Lets say I want to store a selection of my current method, which goes from lines 25-35. I can create a macro that selects the whole method by typing

q    //start recording
a    //use register a
25G  //Go to line 25
V    //visual-line mode
35G  //Go to line 35
q    // stop recording

I can then get that selection back by typing @a (run macro in register a). Repeat with any register, lines, or sections of lines, that you wish. Obviously if you make changes to the file the selection may change as well, so you may want to consider using marks instead of "hardcoding" line numbers.

AlexMA

Posted 2010-12-10T16:58:32.090

Reputation: 417

Yeah, the line numbers thing was dumb -- I just used it as an example for how to create a selection macro. Using a range of marks is an interesting idea though... – AlexMA – 2014-06-25T18:38:03.693

zmto enter that you need to know the line numbers. I think its better to define two marks and then use :'a,'b to operate on the range between them (or replace ' with backticks if want granularity within a line) – sillyMunky – 2014-01-16T01:24:52.477

6

gv works great for recovering the last selection. But one sometimes needs a bit more.

If you ever needed more persistent record, have a look a this plugin we are currently working on on the GitHub.

VisualMarks allows you to save and restore visually selected areas just like you save and mark specific locations in your files with m. After installing, and with the default options, use:

ma

in visual mode to save your current selection to mark a, then

<a

in normal mode to get back to this selection.

iago-lito

Posted 2010-12-10T16:58:32.090

Reputation: 236

Wow, that sounds really cool. I'll have to give that plugin a try! By the way, can these VisualMarks persist with mkview like you can with marks? – labyrinth – 2015-10-20T17:43:09.330

@labyrinth I don't know mkview but.. I guess yes since marks are saved in a separate file and.. I suggest you try anyway :) If they don't persist like you wish, we'll be pleased to receive your feature request on GitHub and try'da process it.

– iago-lito – 2015-10-20T20:00:36.350

1

Suppose I wanted to replace Goodbye with Hello and the code below was selected:

public static void main(String[] args){
    System.out.println("Goodbye World");
}

I would type in :s/Goodbye/Hello/ and vim will replace all instances of Goodbye with Hello

It's simply a combination of vim's regular expressions and visual mode selections. When you select, it should autofill '<,'>

Scott Nguyen

Posted 2010-12-10T16:58:32.090

Reputation: 11

1Sorry, that's not what I was asking. What I'm asking is how do you reuse the selection to do another find and replace on the same range as selected before? – labyrinth – 2010-12-10T18:24:49.847

1After replacing, you will get out of visual mode. type in gv and your visual mode will revert to the previous selection state. – Scott Nguyen – 2010-12-10T22:03:49.730