From 10273424b12af6b3b46518b03ce515cad8bafdd7 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 19 Sep 2025 19:09:01 +0200 Subject: [PATCH] Unify shortcuts for eshell It's rather inconsistent to call eshell without project context from the main shortcut menu when most of the other shortcuts require a project. Since calling eshell directly is done only rarely, let's try to be consistent here and reinstantiate the old project-eshell shortcut (which now duplicates the `` binding). --- site-lisp/db-customize.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site-lisp/db-customize.el b/site-lisp/db-customize.el index 8d6e09f..7512e52 100644 --- a/site-lisp/db-customize.el +++ b/site-lisp/db-customize.el @@ -155,7 +155,7 @@ in the main agenda view." ("Main Org File" ?o db/find-default-org-file) ("EMMS" ?M emms) ("Shell" ?s project-shell) - ("EShell" ?e db/run-or-hide-eshell) + ("EShell" ?e project-eshell) ("Project" ?p project-switch-project) ("Refile File" ?r db/find-default-refile-file) ("Goto Currnet Clock" ?c db/org-clock-goto-first-open-checkbox)