Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been trying Vim for any text editing work for almost a week now. I want to know the fastest way to select a C function definition.

For example, if I have a function like this:

void helloworlds( int num )
{
    int n;
    for ( n = 0; n < num; ++n ) {
        printf( "Hello World!\n" );
    }
}

How would I be able to delete the whole definition including the function name?

share|improve this question

1 Answer

up vote 9 down vote accepted

As in common in Vim, there are a bunch of ways!

Note that the first two solutions depend on an absence of whitespace.

  • If your cursor is on the line with the function name, try d}. It will delete everything to the next block (i.e. your function body).

  • Within the function body itself, dap will delete the 'paragraph'.

  • You can delete a curly brack block with da}. (If you like this syntax, I recommend Tim Pope's fantastic surround.vim, which adds more features with a similar feel).

  • You could also try using regular expressions to delete until the next far left-indented closing curly brace: d/^}Enter

  • ]] and [[ move to the next/previous first-column curly brace (equivalent to using / and ? with that regex I mentioned above. Combine with the d motion, and you acheive the same effect. In addons like Python-mode, these operators are redefined to mean exactly what you're looking for: move from function to function.

How to delete the whole block, header included

If you're on the header/name, or the line before the block, da} should do the trick.

If you're below a block, you can also make use of the handy 'offset' feature of a Vim search. d?^{?-1 will delete backwards to one line before the first occurrence of a first-column opening curly brace. This command's a bit tricky to type. Maybe you could make a <leader> shortcut out of it.

Plugins

I don't do much C programming in Vim, but there are surely plugins to help with such a thing. Try Vim Scripts or their mirror at GitHub.

share|improve this answer
2  
da} (or daB) is built-in Vim functionality, it doesn't need the plugin (see :help aB) – georgebrock Jul 30 '12 at 14:21
Oops! The plugin does such an awesome job with the "Vim feel" I forget what's built-in. Thanks for the pointer! The rest of my tips are vim -u NONE tested, however. =) – David Cain Jul 30 '12 at 14:25
Thanks, I tried those commands and they work great if I just want to delete the function block. Is there a way to delete the function header/name altogether? – Jacky Boen Jul 30 '12 at 14:40
@Jacky, I was responding as a comment, but it got too long. I made another edit addressing your question. Let me know if that suits your needs. – David Cain Jul 30 '12 at 14:54
Whoa that's a lot of commands haha! I guess I'll resort to the plugins then. Thanks for the references! – Jacky Boen Jul 30 '12 at 14:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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