emacs find-tag 在处理 .el.gz 文件时遇到问题
当我使用 find-tags 时,出现以下错误:
文件:/Applications/Emacs.app/Contents/Contents/Resources/lisp/simple.el 未找到
构建标签
(find . -name *.el && find . -name *.el.gz) | etags -
simple.el.gz 存在,并且我使用我正在使用的 雪豹上的 emacs 版本如下:
“GNU Emacs 23.1.1 (i386-apple-darwin9.7.0, NS apple-appkit-949.46) of 2009-07-30 on neutron.local"
有什么想法如何让它发挥作用吗?谢谢!
When I use find-tags, I get the following error:
File: /Applications/Emacs.app/Contents/Contents/Resources/lisp/simple.el not found
simple.el.gz exists and I built TAGS using
(find . -name *.el && find . -name *.el.gz) | etags -
I'm using the following version of emacs on snow leopard:
"GNU Emacs 23.1.1 (i386-apple-darwin9.7.0, NS apple-appkit-949.46)
of 2009-07-30 on neutron.local"
Any ideas how to get this to work? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否启用了
jka-compr
?如果启用,Etags 将自动检查文件的压缩版本是否存在。这就是您需要添加到 .emacs 中的所有内容:Do you have
jka-compr
enabled? Etags will automatically check for the existence of the compressed versions of files if that is enabled. This is all you need to add to your .emacs: