本文介绍了ctags不了解-e选项(没有旺盛的标签选项)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我键入ctags -e
时,它返回一个错误,表明它不知道该命令行选项.我认为它应该了解旺盛的标记,因为etags
可在cli上工作.
When I type ctags -e
it returns an error saying it doesn't know that command line option. I thought it should know about exuberant tags because etags
works on cli.
此外,我收到以下错误:ctags: unrecognized option --langdef=arc
,并且〜/.ctags文件中包含以下内容:
Also, I recieve the following error: ctags: unrecognized option --langdef=arc
and I have the following in my ~/.ctags file:
--langdef=arc
--langmap=arc:.arc
--regex-arc=/^\(def ([a-zA-Z1-9_*\/<>-]+)/\1/
--regex-arc=/^\(= ([a-zA-Z1-9_*\/<>-]+)/\1/
--regex-scheme=/^\(xdef ([a-zA-Z1-9_*\/<>-]+)/\1/
推荐答案
etags
是"Emacs标签"的简称,而不是旺盛的ctags".听起来您已经安装了Emacs的etags
命令,而不是exuberant-ctags的.
etags
is short for "Emacs tags", not "exuberant ctags". It sounds like you have Emacs' etags
command installed, not exuberant-ctags'.
这篇关于ctags不了解-e选项(没有旺盛的标签选项)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!