AutoInclude is a Vim script that allows you to automatically add the #include statements at the top of you *.{cc,hh} files.
To use it, place the cursor on the type you need to include, then press and the corresponding #include statement will be added.
In *.cc files, the correct #include is added, and in *.hh files, the forward declaration is added.
Example:
void myfunc (Foo* x);
-> if you place the cursor on "Foo" and press (just the 2 semicolons), the #include "foo.hh" will be added at the top of the file. (The insertion location is specified by a variable, see Install Details).
The naming standard used is "Foo" and "FooBar", for the FooBar class the #include will be: #include "foo-bar.hh".
Requirements:
· Vim
INSTALLATION:
Just put the autoinclude.vim file in your ~/.vim/plugin directory.
You can specify the line where the #include will be added with the g:AutoIncludeLine variable.
Just add this line to your ~/.vimrc file:
let g:AutoIncludeLine = 42
Where 42 is the line number.
Product's homepage