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キーシーケンスを関数にバインドしていますが、それscheme-smart-completeが何であるかはわかりません\e。Googleでは不可能であることがわかりました(引用符を付けて\eも検索には役立ちませんでした)。
\e\t
scheme-smart-complete
\e
なに\e?
It's the escape key.
See the emacs basic character syntax guide.
So \e\t is escape-tab.
ian.