SHANKAR R-R66203 wrote:
Hi All,
I am basically a VHDL/verilog guy.
But my team has fresh verification engineers who will be using c a lot.
I want to know the useful plugins and any other important aspects, when
using gvim for editing C/C++
As far as I know and searched -
I could get
c.vim -- plugin for gvim
ctags/cscope -- tag generator.
Any other important feature/plugin/tool one need to know for editing C,
please let me know.
Thanks and Regards,
Shankar
Vim (and gvim) have editing tools for C built-in; and with cscope and
Exuberant ctags you have the most important additional tools. Your vimrc
can be as simple as the one-liner
runtime vimrc_example.vim
or as complex as you wish, you shouldn't need additional tools for
syntax coloring and autoindenting. Generate tags using Exuberant ctags
and you can find the definition of anything that has one, if Vim can get
at it (but it can be slow if you have a lot of source files). Note that
the cscope interface is an optional feature.
See
:version
:help tagsrch.txt
:help if_cscop.txt
:help options.txt
Best regards,
Tony.