using vim with the plugin vim-surround pretty extensively, and I am really happy with it. However, there is one replacement for witch I haven't found a nice shortcut.
The usage case, is the following. I need :
def function argument
to become (when the cursor is in the middle of the 'argument')
def function(argument)
My attempts didn't completely fulfil my need:
I have try
ysiw) => def function (argument) # I don't like the space after the function
ysaw) => def function( argument) # I don't like the space before the argument
Since, there is always a shortcut with vim, I am asking the communitity to help me satisfy my style obsession...