From 8101a29d7a79b047934134beef2570a42f1595ee Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 29 Apr 2022 09:04:30 +0200 Subject: [PATCH] Change default shortcut for "r" from scratch to refile I am nowadays keeping my notes in the refile file, and not in the scratch buffer. Change the keybinding to reflect that. --- 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 682d76c..8f1180a 100644 --- a/site-lisp/db-customize.el +++ b/site-lisp/db-customize.el @@ -140,11 +140,11 @@ in the main agenda view." '(("Mail" ?m db/gnus) ("Agenda" ?a db/org-agenda) ("Init File" ?i db/find-user-init-file) - ("Main Org File" ?o (lambda () (interactive) (find-file db/org-default-org-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) - ("scratch" ?r db/scratch) + ("Refile File" ?r #'(lambda () (interactive) (find-file db/org-default-refile-file))) ("Org Clock Goto" ?c org-clock-goto) ("Info Lookup" ?I counsel-info-lookup-symbol) ("Unicode Lookup" ?U counsel-unicode-char)