“\e” 是什么意思?意思是?
我在 .emacs 配置文件中遇到了以下行:
(define-key scheme-mode-map "\e\t" 'scheme-smart-complete)
它将键序列 \e\t
绑定到函数 scheme-smart-complete
,但我不知道\e
是什么,事实证明这是不可能的(即使在 \e
周围加上引号也无助于搜索)。
\e
是什么?
I came across the following line in a .emacs config file:
(define-key scheme-mode-map "\e\t" 'scheme-smart-complete)
It's binding key sequence \e\t
to the function scheme-smart-complete
, but I don't know what \e
is, and it turns out it's impossible to Google (even putting quotes around \e
didn't help with the search).
What's \e
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是逃生键。
请参阅 emacs 基本字符语法指南 。
所以 \e\t 是转义选项卡。
伊恩。
It's the escape key.
See the emacs basic character syntax guide.
So \e\t is escape-tab.
ian.