vote up 0 vote down star

Is there a way to get vim to paste a function's arguments after selecting it via omnifunc (or at least displaying it after selecting it, but not before)? Something like:

myObject.play(int time, std::string foo)

Maybe even allows you to tab through the arguments like what those snippets plugins allow you to do.

Is there such a plugin or feature? I think this is extremely useful.

BTW, omnifunc's preview option is very slow and will not show up after you select a function.

flag

0% accept rate
I just found a plugin that does what I'm looking for: vim.org/scripts/script.php?script_id=2535/… – emergence May 18 at 16:35
I'm wondering if there are other scripts like this? – emergence May 19 at 2:59

2 Answers

vote up 1 vote down

Try code_complete.

It uses ctags to complete a function signature and allows you to cycle through the arguments list. It can complete other stuff as well - standard header files, for()/switch() blocks etc.

link|flag
vote up -1 vote down

you could get the snippetsEMU plugin from the vim website then set up a custom snippet for that function like this:

:Snippet play myObject.play(int <{time}>, <{std::string}> <{foo}>)<{}>
This way all you have to do is type play and hit the tab key to have it expanded the curly braces will allow you to tab through the the args. Hope this is what you're looking for...

link|flag
Thanks, but I have a huge codebase and it's unrealistic to keep on creating snippets for each function. – emergence May 18 at 13:07
I know the feeling, it is dreadfully slow :-\ – bsisco May 18 at 13:22
@emergence: it might be possible to use ctags (or something like it) on the codebase and then munge the output with some script to create the necessary snippets. But I have no experience how the snippetsEMU plugin would handle several thousands of these snippets, which I'd expect from a big code base ... – blixtor May 18 at 13:59
I found this newsgroups.derkeiler.com/Archive/Comp/… that might be able to help you out. Let me know. Cheers – bsisco May 18 at 14:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.