Emacs 和切换输入法
是否有机会在 Emacs 23.1.1 中将 (toggle-input-method)
的键绑定更改为 或
(因为我使用
作为 )?
显然,这行不通:
(global-set-key [(meta shift)] 'toggle-input-method)
提前致谢。
Is there any chance to change in Emacs 23.1.1 a keybinding for (toggle-input-method)
to <Meta+Shift>
or <Alt+Shift>
(because I use <Alt>
as <Meta>
)?
This, obviously, doesn't work:
(global-set-key [(meta shift)] 'toggle-input-method)
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这几乎是一个重复的问题...请参阅 elisp 如何检查是否按下了 Shift 键。 Alt 和 Shift 都是键修饰符,因此您无法直接将任何命令绑定到它们。
This is pretty much a duplicate question... see elisp how to check if shift key is pressed. Alt and Shift are both key modifiers, and because of that you cannot bind any commands to them directly.