From e8d1035f0c100e551ac0d6ba7ceffd0aa77fa3ca Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 10 Oct 2025 16:42:48 +0200 Subject: [PATCH] Don't let eshell manipulate the mode-line This results in an almost empty mode-line otherwise. --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index cf5c671..29b2be2 100644 --- a/init.el +++ b/init.el @@ -2795,7 +2795,8 @@ Note that this workaround is incomplete, as explained in this comment." eshell-highlight-prompt nil eshell-cd-on-directory t eshell-expand-input-functions '(eshell-expand-history-references) - eshell-plain-echo-behavior t) + eshell-plain-echo-behavior t + eshell-status-in-mode-line nil) :bind (:map eshell-mode-map ("M-P" . eshell-previous-prompt)