From 61b396422411f2a68d0f6998148c451f993aa86c Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Wed, 28 May 2025 15:54:17 +0200 Subject: [PATCH] Use project.el to pop up shell buffers from shortcuts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The default binding for my shortcuts might be easier to use … ? --- site-lisp/db-customize.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site-lisp/db-customize.el b/site-lisp/db-customize.el index dde0e41..6023d24 100644 --- a/site-lisp/db-customize.el +++ b/site-lisp/db-customize.el @@ -155,8 +155,8 @@ in the main agenda view." ("Init File" ?i db/find-user-init-file) ("Main Org File" ?o (lambda () (interactive) (find-file db/org-default-org-file))) ("EMMS" ?M emms) - ("Shell" ?s db/run-or-hide-shell) - ("EShell" ?e db/run-or-hide-eshell) + ("Shell" ?s project-shell) + ("EShell" ?e project-eshell) ("Refile File" ?r (lambda () (interactive) (find-file db/org-default-refile-file))) ("Goto Currnet Clock" ?c db/org-clock-goto-first-open-checkbox) ("Info Lookup" ?I info-lookup-symbol)