summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2025-06-07 15:59:23 +0100
committerGrégoire Duchêne <gduchene@awhk.org>2025-06-07 15:59:23 +0100
commitf5daf009ec88c310bfac50cde2ce554dda72914e (patch)
treefbbf500395adef2f88e5c79e5ea0c6205ff9d3f9
parent02b96abd633f0517619aceadb4ab29e8fcc3e787 (diff)
emacs: Jump to Eshell buffer from anywhere
-rw-r--r--emacs/init.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el
index e07cb65..bc0abf8 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -237,7 +237,9 @@
:map eshell-mode-map
("s-l" . my/eshell-clear)
("s-s" . consult-history))
- :custom ((eshell-cmpl-ignore-case t)
+ :custom ((display-comint-buffer-action '(display-buffer-use-some-frame
+ (category . comint)))
+ (eshell-cmpl-ignore-case t)
(eshell-aliases-file (expand-file-name "alias" user-emacs-directory))
(eshell-directory-name (my/cache-file-name "eshell"))
(eshell-hist-ignoredups t)