all repos — nixfiles @ 23b4dcb32b7f7fbf1c12d23030b9de02d64c955f

System and user configuration, managed by nix and home-manager

emacs: don't delete eshell window on `exit` if last window
Alan Pearce alan@alanpearce.eu
Sat, 18 Mar 2023 22:53:30 +0100
commit

23b4dcb32b7f7fbf1c12d23030b9de02d64c955f

parent

0bdb4336b16f5d689709a2414efa5d7643c71102

1 files changed, 3 insertions(+), 1 deletions(-)

jump to
M user/emacs/init.eluser/emacs/init.el
@@ -702,7 +702,9 @@ (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)))
+            (add-hook 'eshell-exit-hook (lambda ()
+                                          (when (window-deletable-p)
+                                            (delete-window))))))
 
 (use-package eshell-toggle
   :after projectile