如何在按下前缀键 Ch 的同时执行 lisp 函数,然后让 Emacs 继续正常处理 Ch?
我想在按下前缀键 Ch 的同时执行 lisp 函数,然后让 Emacs 继续正常处理 Ch。 我该怎么做呢? 谢谢你!
I want to execute a lisp function while pressing prefix key C-h and then let Emacs continue the normal processing of C-h.
How can I do it?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
评估后
我发现命令绑定是
help-command
。您可以使用“around”默认设置来运行您的代码。请参阅手册。Evaluating
I found out the command bound is
help-command
. You can use an "around" defadvice to run your code. See manual.