What are the essential addons to help with editing C?
|
|
|
Allows searching code for:
|
||||
|
|
|
I have a suite for C and C++ programming. It is mainly oriented toward C++ programming, however a few, and unique features can be used in C as well:
It is a little bit messy to install right now. I still have a few thing to do before an official and correctly packaged release. Otherwise, I also use:
|
|||||||||||||||
|
|
Definitely use a tags file to navigate around the source. The best tool to create one is Exuberant Ctags, at http://ctags.sourceforge.net/. In Vim you can enter ":help tags" to get more information. |
|||
|
|
|
Easytags: It doesnt really replace other tagging plugins, but will give you syntax highlighting for user-defined functions and types. Makes C/CPP much more readable, IMHO. tagbar: I prefer it to the TagList plugin that others have mentioned. It just presents a much more readable list of tags, than does TagList. One difference, as far as I know though, is that it only shows tags in the current buffer. TagList will show you tags from all the buffers that you have opened. Both tagbar and taglist can be used at the same time. syntastic: The best of the bunch. It provides on-the-fly syntax checking in vim. It will run a syntax check every time you write a file. It provides an error window that allows you to jump to errors in your code. Works amazingly, and is hands down one of the best vim plugins of all time. And it works for lots of languages, not just C families. |
|||
|
|
|
The CCTree plugin allows you to display call trees for your C-programs. It only requires feeding in a cscope database. |
|||
|
|
|
I really like Bufexplorer for navigating between all of my open buffers. |
|||
|
|
|
All off the above and, I found this little plugin called code_complete really cute, to "tab complete" like you do in the shell but with you code... Watch this demo and you you will get the idea. And since we use doxygen to document our code I rather easily expanded that script to create a /** @bla bla etc etc */ type off thing that was compatible with out coding standards. (Thinking about it, it is quite close to the javadoc type of comments) /Johan |
|||
|
|
|
For code completion I would recommend snippetsEmu. It is very easy to customize. |
|||
|
|
|
Syntax coloring and integrated cscope functionality |
|||
|
|