Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

vim fu, swapping parameters for a method call

Tags:

vim

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"
like image 321
Sam Saffron Avatar asked Aug 13 '09 06:08

Sam Saffron


2 Answers

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.

like image 89
Brian Carper Avatar answered Nov 02 '22 15:11

Brian Carper


Check out sideways.vim, a plugin by @AndrewRadev. It can handle moving parameters and other delimited list items around, with some nice features like moving nested lists as a single unit. It handles Ruby-style method calls without parentheses as well. Very handy.

like image 6
Jim Stewart Avatar answered Nov 02 '22 15:11

Jim Stewart