Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过vim在mac(Mountain Lion)上使用libc库的标签。我已经从( )*.c中的文件生成了标签。我已设置包含生成的标签文件 ( )。但是,如果我尝试访问某个函数上的标签,它会说“未找到标签”。我该如何解决这个问题?/usr/includectags -R /usr/include/*.htagsset tags+=tagsfseek()
*.c
/usr/include
ctags -R /usr/include/*.h
tags
set tags+=tags
fseek()
编辑:
我已经尝试过ctags /usr/lib/libc.dylib,现在它会导致错误提示文件未排序。:(
ctags /usr/lib/libc.dylib
使用这一行来生成一个可用的tags文件:
ctags -R --c++-kinds=+p --fields=+iaS --extra=+q /usr/include
完成后,:tag fseek应该工作,以及<C-]>在fseek通话中。
:tag fseek
<C-]>
fseek
请务必:h tags仔细阅读:h ctags。
:h tags
:h ctags