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 <
call \"hello mister 123\", 2343
:%s:call \(".*"\)\s\?,\(.*\):call \2,\1:g