Function: eshell-life-is-too-much
eshell-life-is-too-much is an interactive and byte-compiled function
defined in esh-mode.el.gz.
Signature
(eshell-life-is-too-much)
Documentation
Kill the current buffer (or bury it). Good-bye Eshell.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defun eshell-life-is-too-much ()
"Kill the current buffer (or bury it). Good-bye Eshell."
(interactive)
(if (not eshell-kill-on-exit)
(bury-buffer)
(kill-buffer (current-buffer))))