Usually how do you swap function parameter in neovim?

Usually how do you swap function parameter in neovim ?

like

function_call(one, two, three) swap to function_call( two, one , three)
function_call(one, two, three) swap to function_call( one, three , two )

use some plugin or manual move ?

1 Like
1 Like
1 Like

Once I created a vimgolf challenge about a similar topic, maybe worth to check.