emacs: close eshell buffer and window when running `exit`
Alan Pearce alan@alanpearce.eu
Wed, 15 Mar 2023 21:50:26 +0100
1 files changed, 6 insertions(+), 4 deletions(-)
jump to
M user/emacs/init.el → user/emacs/init.el
@@ -697,10 +697,12 @@ :functions (eshell/pwd) :init (progn (with-eval-after-load 'evil-ex (evil-ex-define-cmd "esh[ell]" #'eshell))) - :config (setq eshell-prompt-function (lambda () - (concat (eshell/pwd) "\n$ ")) - eshell-prompt-regexp "^[$][[:blank:]]" - eshell-cmpl-cycle-completions nil)) + :config (progn + (setq eshell-prompt-function (lambda () + (concat (eshell/pwd) "\n$ ")) + eshell-prompt-regexp "^[$][[:blank:]]" + eshell-cmpl-cycle-completions nil) + (add-hook 'eshell-exit-hook #'evil-window-delete))) (use-package eshell-toggle :after projectile