Function: eshell-proc-mode

eshell-proc-mode is an interactive and byte-compiled function defined in esh-proc.el.gz.

Signature

(eshell-proc-mode &optional ARG)

Documentation

Minor mode for the proc eshell module.

C-c C-\ eshell-quit-process
C-c C-c eshell-interrupt-process
C-c C-d eshell-send-eof-to-process
C-c C-k eshell-kill-process
C-c C-s list-processes
C-c M-i eshell-insert-process

This is a minor mode. If called interactively, toggle the Eshell-Proc mode mode. If the prefix argument is positive, enable the mode, and if it is zero or negative, disable the mode.

If called from Lisp, toggle the mode if ARG is toggle. Enable the mode if ARG is nil, omitted, or is a positive number. Disable the mode if ARG is a negative number.

To check whether the minor mode is enabled in the current buffer, evaluate the variable eshell-proc-mode(var)/eshell-proc-mode(fun).

The mode's hook is called both when the mode is enabled and when it is disabled.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-proc.el.gz
(define-minor-mode eshell-proc-mode
  "Minor mode for the proc eshell module.

\\{eshell-proc-mode-map}"
  :keymap eshell-proc-mode-map)