From 9994a3ac82b525255b9a6f0212dae56b4245197f Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 26 Sep 2020 16:46:34 +0200 Subject: [PATCH] Update key bindings for handling Org Mode links F9 is a comparably prominent key binding, and we now bind it to the more important `db/org-add-link-to-other-item'. The formar binding to `db/org-find-links-to-current-item' is bound to F11 now, since it will still be used often, but not more often then inserting links (I think). The old binding for F11 to `org-capture' has not been used much, and so we can dispense of it. --- init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index 6a578f4..bc6d16c 100644 --- a/init.el +++ b/init.el @@ -175,7 +175,7 @@ (bind-key "" #'winner-undo) (bind-key "" #'winner-redo) (bind-key "" #'magit-status) - (bind-key "" #'org-capture) + (bind-key "" #'db/org-find-links-to-current-item) (bind-key "" #'db/helm-shortcuts) (bind-key "" #'db/run-or-hide-eshell) (bind-key "" #'hydra-feature-shortcuts/body) @@ -183,9 +183,9 @@ (bind-key "" #'hydra-zoom/body) (bind-key "" #'dictcc) (bind-key "" #'bm-toggle) + (bind-key "" #'db/org-add-link-to-other-item) (bind-key "" #'bm-next) (bind-key "" #'bm-previous) - (bind-key "" #'db/org-find-links-to-current-item) (bind-key "C-," #'mc/skip-to-previous-like-this) (bind-key "C-." #'mc/skip-to-next-like-this) (bind-key "C-;" #'iedit-mode)