From 866c79c2b2fd0a48ff5e50d6c7531e500ea5cade Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 6 Sep 2025 16:50:41 +0200 Subject: [PATCH] Fix setting for EShell's scrolling behavior `t` is not an allowed value (as per `setopt`'s complaints), the correct value would be `all`. But let's try `this` for now, this sounds interesting. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index fb9ee1b..9a3cbc6 100644 --- a/init.el +++ b/init.el @@ -2755,7 +2755,7 @@ Note that this workaround is incomplete, as explained in this comment." (use-package eshell :init (setopt eshell-cmpl-cycle-completions nil - eshell-scroll-to-bottom-on-input t + eshell-scroll-to-bottom-on-input 'this eshell-prefer-lisp-functions nil eshell-error-if-no-glob nil eshell-hist-ignoredups t