I have installed omnicppcomplete, taglist, cscope, etc., and I generated my tags in /usr/include
using:
ctags -R --c++-kinds=+plx --fields=+iaS --extra=+q .
And in my .vimrc
I set:
set tags=/usr/include/tags,./tags,./..tags,./**/tags
But now when I write my multi-thread programs, I can not switch to pthread_create
and pthread_mutex_init
by pressing Ctrl+]. It says "tags not found".
So I am writing here for help. Thanks.