Function: tab-bar--undefine-keys
tab-bar--undefine-keys is a byte-compiled function defined in
tab-bar.el.gz.
Signature
(tab-bar--undefine-keys)
Documentation
Uninstall key bindings previously bound by tab-bar--define-keys.
Source Code
;; Defined in /usr/src/emacs/lisp/tab-bar.el.gz
(defun tab-bar--undefine-keys ()
"Uninstall key bindings previously bound by `tab-bar--define-keys'."
(when (eq (global-key-binding [(control tab)]) 'tab-next)
(global-unset-key [(control tab)]))
(when (eq (global-key-binding [(control shift tab)]) 'tab-previous)
(global-unset-key [(control shift tab)]))
(when (eq (global-key-binding [(control shift iso-lefttab)]) 'tab-previous)
(global-unset-key [(control shift iso-lefttab)])))