Function: edt-learn

edt-learn is an interactive and byte-compiled function defined in edt.el.gz.

Signature

(edt-learn)

Documentation

Learn a sequence of key strokes to bind to a key.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;
;;; LEARN
;;;

(defun edt-learn ()
  "Learn a sequence of key strokes to bind to a key."
  (interactive)
  (if (eq defining-kbd-macro t)
      (edt-remember)
    (start-kbd-macro nil)))