tags:

views:

147

answers:

3

What is the most efficient way to swap two params for a method call in Vim?

For example, I want to change:

call "hello mister 123", 2343

to:

call 2343, "hello mister 123"

(Assume the cursor is at the beginning of the line.)

Ideally the trick works for stuff like

call "hello, world" , "goodbye, world"
A: 
:%s:call \(".*"\)\s\?,\(.*\):call \2,\1:g
nightingale2k1
A: 

Here's a script designed to swap params in python scripts, you may be able to adapt it.

anthony
I want it for Ruby so Python should be fairly close
Sam Saffron
+2  A: 

This regex will do it for your examples:

:s/\vcall ("[^"]+"|[^,]+)\s*,\s*("[^"]+"|[^,]+)/call \2, \1/

This regex will need to become progressively more nasty if you have escaped quotation marks and such things in one of your parameters.

In reality, I'd just highlight one parameter (in visual mode), hit d, highlight the other parameter, and hit p; Vim will nicely paste what's in the register, overwriting what you have highlighted, and swap the deleted text into the register. Then move the cursor and hit p again. Highlight, d, highlight, p, move cursor, p is a common combination, in my vimming at least.

So with the cursor at the start of the line, first example:

wva"dlvawpF,P

Meaning move past the word "call" (w), highlight a quoted string (va"), delete it (d), move one space to the right (l), highlight a word (vaw), paste (p), move backward to the comma (F,), paste before it (P).

Second example:

wva"dlva"p_f,P

This isn't hard once you get used to the movement commands.

Brian Carper