我已经看过并尝试使用旺盛的ctags,没有运气与我想做的。我正在一个Mac上尝试在一个项目中工作,我想排除这样的目录,如.git,node_modules,test等。当我尝试像ctags -R –exclude = [。git,node_modules,test]没有回报。我真的只需要在我的核心目录中运行它。关于如何实现这一点的任何想法?
–exclude选项不期望文件列表。根据ctags的手册页,“该选项可以根据需要多次指定”。所以,就像这样:
原文链接:https://www.f2er.com/bash/387847.htmlctags -R –exclude = .git –exclude = node_modules –exclude = test