Function: edt-bind-key
edt-bind-key is a byte-compiled function defined in edt.el.gz.
Signature
(edt-bind-key KEY BINDING)
Documentation
Bind standard key sequences to custom bindings in the EDT Emulator.
Argument KEY is the name of a key. It can be a standard key or a function key. Argument BINDING is the Emacs function to be bound to <KEY>.
Aliases
edt-bind-standard-key (obsolete since 28.1)
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
(defun edt-bind-key (key binding)
"Bind standard key sequences to custom bindings in the EDT Emulator.
Argument KEY is the name of a key. It can be a standard key or a function key.
Argument BINDING is the Emacs function to be bound to <KEY>."
(define-key edt-user-global-map key binding))