如何在 XEmacs 中进行括号匹配?

发布于 2024-09-26 23:12:50 字数 160 浏览 4 评论 0原文

我尝试使用菜单设置“选项|显示|Paren 突出显示”中的所有选项,但没有任何效果 - 没有执行括号匹配。我还尝试在我的初始化文件中显式设置 (paren-mode 'blink-paren t) ,但这也没有帮助。有什么想法可能会发生什么以及如何解决它?

谢谢。

I tried using all options in the menu setting Options|Display|Paren Highlighting, but nothing works - no parenthesis match is performed. I also tried setting explicitly (paren-mode 'blink-paren t) in my init file, but that did not help either. Any ideas what may be happening and how do I fix it?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

蓝海 2024-10-03 23:12:50

我的 XEmacs 中的 paren 模式已经工作了足够长的时间,以至于我忘记了我到底做了什么来打开它,但我确实挖掘出了这些可能有帮助的东西。

来自我的 .xemacs/init.el:

(require 'paren)

来自我的 .xemacs/custom.el 作为自定义设置变量的一部分:

'(paren-mode (quote sexp) nil (paren))
'(show-paren-mode t)

-John

I have had paren mode working long enough in my XEmacs that I forget what exactly I did to turn it on, but I did dig these things out which might help.

From my .xemacs/init.el:

(require 'paren)

From my .xemacs/custom.el as part of custom-set-variables:

'(paren-mode (quote sexp) nil (paren))
'(show-paren-mode t)

-John

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