尝试在vim中使用ctags时出现cscope错误

时间:2011-08-12 09:43:51

标签: vim ctags cscope

我为我的项目生成了ctags:

ctags -f /home/grae/tags --recurse --langmap=C++:.C.h.c.cpp.hpp.inl --languages=C++ --extra=+q --fields=+iaS --c++-kinds=+p --verbose framework/ modules/ /usr/include/

然后我将标签添加到.vimrc:

set tags+=/home/grae/tags

我还暂时添加了以下内容(但现已删除):

set csto=1

现在当我尝试Ctrl +]或g]时,我收到错误:

cstag:找不到标签

我不应该使用cscope,所以我不确定这是怎么发生的。我目前的想法是:

* cscope on by default
* something has overriden Ctrl+] and g]

任何想法如何解决这个问题?

1 个答案:

答案 0 :(得分:7)

在检查时找到答案:选项,您需要使用以下命令关闭cscope:

:set nocst