You are not logged in.
I have this script:
=======================================================================
#!/bin/bash
[[ -d ~/.vim/tags ]] || mkdir -p ~/.vim/tags
[[ -z $J2SDKDIR ]] || OTHER="${J2SDKDIR}/include"
ctags -R --sort=yes --c++-kinds=+p --fields=+iaS --extra=+q --language-force=C++ -f ~/.vim/tags/cpp \
/usr/include /usr/local/include \
${OTHER}
=======================================================================
But, when a run the command, it returns this error:
"ctags: cannot sort tag file : No such file or directory"
Know someone how to solve this problem?
Last edited by robsonpeixoto (2010-11-17 18:51:09)
Offline
" I recompile ctag with option --disable-external-sort and everything is ok ! "
http://tech.groups.yahoo.com/group/vim/message/89321
Last edited by robsonpeixoto (2010-11-17 18:51:57)
Offline