在 emacs 中,“Mq”是不起作用?

发布于 2024-12-31 23:35:02 字数 69 浏览 0 评论 0原文

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

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

发布评论

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

评论(2

坏尐絯℡ 2025-01-07 23:35:02

使用 -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 to fill-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.

情话难免假 2025-01-07 23:35:02

将此行放入您的 .emacs 文件中并重新启动 emacs。

(global-set-key "\M-q" 'fill-paragraph)

Place this line in your .emacs file and restart emacs.

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