Function: term-magic-space
term-magic-space is an interactive and byte-compiled function defined
in term.el.gz.
Signature
(term-magic-space ARG)
Documentation
Expand input history references before point and insert ARG spaces.
A useful command to bind to SPC. See term-replace-by-expanded-history.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/term.el.gz
(defun term-magic-space (arg)
"Expand input history references before point and insert ARG spaces.
A useful command to bind to SPC. See `term-replace-by-expanded-history'."
(interactive "p")
(term-replace-by-expanded-history)
(self-insert-command arg))