我已經安裝了omnicppcomplete,標記列表,cscope的,等等,我用我的生成標籤/usr/include
:的ctags:調用pthread_mutex_init
ctags -R --c++-kinds=+plx --fields=+iaS --extra=+q .
在我.vimrc
我設置:
set tags=/usr/include/tags,./tags,./..tags,./**/tags
但現在當我編寫我的多線程程序時,我不能通過按Ctrl + ]切換到pthread_create
和pthread_mutex_init
。它說「找不到標籤」。
所以我寫在這裏尋求幫助。謝謝。
我搜索了/ usr/include中的標籤文件,找到以下行: __pthread_mutex_init bits/libc-lock.h/* extern int __pthread_mutex_init(.........)*/ 它就像是什麼你說。而pthread.h確實包含許多預處理器宏。 那麼是否有任何方法讓ctags知道這些標籤? PS,我注意到,當我打字並按下ctrl + n做詞完成時,它可以成功解析pthread_create和pthread_mutex_init函數 – Alex 2010-08-25 04:28:37
好問題。你的文件是什麼:'/ usr/include/pthread.h'。在我的Mac上,完整的'pthread_create'聲明就在那裏,所以表面上這一切都可以在這裏工作。檢查'pthread_create'的'pthread.h'。如果它像你期望的那樣,那麼我認爲該文件沒有被解析。 – 2010-08-25 14:14:42
我檢查了/usr/include/pthread.h,我在Fedora 13中也有完整的pthread_create聲明,但是我注意到另一個問題,它可以解析pthread_join,但不能解析pthread_create。所以我相信該文件被解析,但它似乎沒有解析所有這些,我需要一些其他配置? – Alex 2010-08-26 01:24:45