[EMAIL PROTECTED] wrote:
Is there any vim plugin that shows a function declaration if I type the
function name? For example, if I type "memset(" it should show the
memset function declaration (at least its type of arguments).
There's the hints file created by flist. See
http://mysite.verizon.net/astronaut/src/index.html ;
to use it
flist -h *.c
which will create a "hints" file from the C source. You'll need to
source hints in. It then will
trigger on funcname( and produce a message showing a prototype.
Regards,
Chip Campbell