I know that when you define a function in vim, you can use the range keyword so that users can say:
:-5,+5call MyFunction()
And then your function gets a:firstline and a:lastline.
What I want is something similar, but more like the traditional vi way of combining a command with a movement, so that 'd ' deletes a space, 'dw' deletes a word, 'd2w' deletes two words, 'd2j' deletes three lines, etc. Assuming my function gets mapped to some input-mode character sequence, is there any way to make it accept similar variable-length inputs, and then modify that text?
Just to be a little more clear, suppose I want to define a function to wrap <b> tags around existing text. We'll say that function is mapped to ;b. I want users to be able to say ';bw' to bold one word, or ';bf.' to bold everything to the end of the sentence, or whatever, with all the flexibility that vim provides to built-in commands.
<b>...</b>will look likeys{motion}<b>. According to the help, you may reduce this toys{motion}bif you executelet g:surround_{char2nr("b")}="<b>\r</b>". – ZyX Dec 15 '10 at 19:35operatorfuncoption as well, so if you want to define your own function you may find examining surround source code useful. – ZyX Dec 15 '10 at 19:36