I have compiled code. If I try to generate tags using 'usr / bin / ctags -R *', it will include all files c, h, object, etc. Thus, it takes a lot of time as well as memory. Could you let me know how to create tags only for c / h files.
Use the -languages option:
ctags --languages = C
I would try "man ctags" and read the options.
or you can use shell shell like:
ctags `find . -name "*.[ch]" -print`
or something like that