Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以,我尝试将一个键映射到与默认不同的命令,但我没有得到想要的效果。
(global-set-key (kbd "<left>") (message "Use C-f!"))
如您所见,重点是显示消息“使用 Cf!” 按下左箭头键时在回声区域中。但是,这样做是将消息输出到我正在编辑的当前缓冲区中。
我错过了什么?
问候,
大卫·林德
您应该将键绑定到命令:
(global-set-key (kbd "<left>") (lambda () (interactive) (message "Use C-f!")))