如何在 XEmacs 中进行括号匹配?
我尝试使用菜单设置“选项|显示|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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的 XEmacs 中的 paren 模式已经工作了足够长的时间,以至于我忘记了我到底做了什么来打开它,但我确实挖掘出了这些可能有帮助的东西。
来自我的 .xemacs/init.el:
来自我的 .xemacs/custom.el 作为自定义设置变量的一部分:
-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:
From my .xemacs/custom.el as part of custom-set-variables:
-John