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.
我在 .emacs 配置文件中遇到了以下行:
(define-key scheme-mode-map "\e\t" 'scheme-smart-complete)
它将键序列绑定\e\t到 function scheme-smart-complete,但我不知道是什么\e,事实证明这对 Google 来说是不可能的(即使加上引号\e也无助于搜索)。
\e\t
scheme-smart-complete
\e
是什么\e?
是逃生键。
请参阅emacs 基本字符语法指南。
所以 \e\t 是转义标签。
伊恩