Function: viper-uncatch-tty-ESC
viper-uncatch-tty-ESC is a byte-compiled function defined in
viper.el.gz.
Signature
(viper-uncatch-tty-ESC)
Documentation
Don't hack ESC into escape any more.
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/viper.el.gz
(defun viper-uncatch-tty-ESC ()
"Don't hack ESC into `escape' any more."
(let ((b (viper--lookup-key input-decode-map ?\e)))
(and (eq 'menu-item (car-safe b))
(eq 'viper--tty-ESC-filter (nth 4 b))
(define-key input-decode-map [?\e] (setq b (nth 2 b))))
b))