在 emacs 中,“Mq”是不起作用?
我正在使用 GNU Emacs 23.3.1。当我按“Mq”时,emacs 说“Mq 未定义”。我该如何解决这个问题?谢谢。
I'm using GNU Emacs 23.3.1. When I press "M-q" emacs says "M-q is undefined". How can I solve this issue? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
-Q
选项启动 Emacs,然后输入 Ch k Mq 查看问题是否仍然存在。如果事实证明 Mq 实际上以这种方式绑定到fill-paragraph
,那么 init 文件中的某些内容显然会撤消该键绑定。然后,您可以以“二分搜索”方式注释掉 .emacs 文件中的一些自定义设置,以查找其中哪一个负责删除所述键绑定。
Start Emacs with the
-Q
option, and see if the problem persists by typing C-h k M-q. If it turns out that M-q is in fact bound tofill-paragraph
that way, then something in your init file apparently undoes that key binding.You could then comment out some of your customizations in the .emacs file in a "binary search" style to find which one of them is responsible for removing said key binding.
将此行放入您的 .emacs 文件中并重新启动 emacs。
Place this line in your .emacs file and restart emacs.