emacs find-tag 在处理 .el.gz 文件时遇到问题

发布于 2024-09-13 07:13:23 字数 403 浏览 5 评论 0原文

当我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过去的过去 2024-09-20 07:13:23

您是否启用了jka-compr?如果启用,Etags 将自动检查文件的压缩版本是否存在。这就是您需要添加到 .emacs 中的所有内容:

(require 'jka-compr)

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:

(require 'jka-compr)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文