Open eshell in current project by default

I use this more than opening a non-project eshell, so let's switch keys.
This commit is contained in:
Daniel Borchmann 2025-09-19 16:51:35 +02:00
parent bf47708450
commit 4a5f3c44f9
No known key found for this signature in database
GPG Key ID: 50EA937BF472ADD1
2 changed files with 3 additions and 3 deletions

View File

@ -3087,14 +3087,14 @@ Note that this workaround is incomplete, as explained in this comment."
(bind-key "<Scroll_Lock>" 'scroll-lock-mode) (bind-key "<Scroll_Lock>" 'scroll-lock-mode)
(bind-key "<XF86Back>" #'winner-undo) (bind-key "<XF86Back>" #'winner-undo)
(bind-key "<XF86Forward>" #'winner-redo) (bind-key "<XF86Forward>" #'winner-redo)
(bind-key "<f10>" #'magit-status) (bind-key "<f1>" #'project-eshell)
(bind-key "<f1>" #'db/run-or-hide-eshell)
(bind-key "<f2>" #'db/frequently-used-features-prefix) (bind-key "<f2>" #'db/frequently-used-features-prefix)
(bind-key "<f5>" #'project-find-regexp) (bind-key "<f5>" #'project-find-regexp)
(bind-key "<f6>" #'text-scale-adjust) (bind-key "<f6>" #'text-scale-adjust)
(bind-key "<f7>" #'dictcc) (bind-key "<f7>" #'dictcc)
(bind-key "<f8>" #'hydra-org-linking/body) (bind-key "<f8>" #'hydra-org-linking/body)
(bind-key "<f9>" #'magit-dispatch) (bind-key "<f9>" #'magit-dispatch)
(bind-key "<f10>" #'magit-status)
(bind-key "C-," #'mc/skip-to-previous-like-this) (bind-key "C-," #'mc/skip-to-previous-like-this)
(bind-key "C-." #'mc/skip-to-next-like-this) (bind-key "C-." #'mc/skip-to-next-like-this)
(bind-key "C-;" #'iedit-mode) (bind-key "C-;" #'iedit-mode)

View File

@ -155,7 +155,7 @@ in the main agenda view."
("Main Org File" ?o db/find-default-org-file) ("Main Org File" ?o db/find-default-org-file)
("EMMS" ?M emms) ("EMMS" ?M emms)
("Shell" ?s project-shell) ("Shell" ?s project-shell)
("EShell" ?e project-eshell) ("EShell" ?e db/run-or-hide-eshell)
("Project" ?p project-switch-project) ("Project" ?p project-switch-project)
("Refile File" ?r db/find-default-refile-file) ("Refile File" ?r db/find-default-refile-file)
("Goto Currnet Clock" ?c db/org-clock-goto-first-open-checkbox) ("Goto Currnet Clock" ?c db/org-clock-goto-first-open-checkbox)