Skip to content Skip to sidebar Skip to footer

Ctags Never Stops When I Try To Build A Tag File For All Python Libraries

I used to use ctags to generate a tags file for all installed python libraries by this command: C:\Windows\System32>ctags -R -f d:\home\vimfiles\python.ctags d:\Python26 But th

Solution 1:

@Gintautas You are genius.

I found ctags was stopped by this file :

D:\Python26\Lib\site-packages\ipython-0.10-py2.6.egg\share\doc\ipython\manual\html\searchindex.js

Exclude it by set the following ctags option could resolve the problem.

--exclude=searchindex.js

I guess it's a bug of ctags.

Post a Comment for "Ctags Never Stops When I Try To Build A Tag File For All Python Libraries"