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
?