Let EShell's echo behave like in ordinary shells

This is what I expect.
This commit is contained in:
Daniel Borchmann 2025-09-06 16:50:11 +02:00
parent 145f99d5ae
commit 463a0082b5
No known key found for this signature in database
GPG Key ID: 50EA937BF472ADD1

View File

@ -2754,8 +2754,7 @@ Note that this workaround is incomplete, as explained in this comment."
pcomplete/git))
(use-package eshell
:init (progn
(setq eshell-cmpl-cycle-completions nil
:init (setopt eshell-cmpl-cycle-completions nil
eshell-scroll-to-bottom-on-input t
eshell-prefer-lisp-functions nil
eshell-error-if-no-glob nil
@ -2768,7 +2767,8 @@ Note that this workaround is incomplete, as explained in this comment."
eshell-prompt-function #'eshell/default-prompt-function
eshell-highlight-prompt nil
eshell-cd-on-directory t
eshell-expand-input-functions '(eshell-expand-history-references)))
eshell-expand-input-functions '(eshell-expand-history-references)
eshell-plain-echo-behavior t)
:bind (:map eshell-mode-map
("M-P" . eshell-previous-prompt)