Function: term-signals-menu
term-signals-menu is an interactive and byte-compiled function defined
in term.el.gz.
Signature
(term-signals-menu ARG1)
Documentation
Signals menu for Term mode.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/term.el.gz
(easy-menu-define term-signals-menu
(list term-mode-map term-raw-map term-pager-break-map)
"Signals menu for Term mode."
'("Signals"
["BREAK" term-interrupt-subjob :active t
:help "Interrupt the current subjob"]
["STOP" term-stop-subjob :active t :help "Stop the current subjob"]
["CONT" term-continue-subjob :active t
:help "Send CONT signal to process buffer's process group"]
["QUIT" term-quit-subjob :active t
:help "Send quit signal to the current subjob"]
["KILL" term-kill-subjob :active t
:help "Send kill signal to the current subjob"]
["EOF" term-send-eof :active t
:help "Send an EOF to the current buffer's process"]))