Introduce hydra for managing links between Org mode items

It's easier to use and easier to keep track of what is available.  It also saves
key precious bindings!
This commit is contained in:
Daniel - 2021-03-20 15:45:49 +01:00
父節點 77920dd9a2
當前提交 78b202aed7
沒有發現已知的金鑰在資料庫的簽署中
GPG 金鑰 ID: 1C7071A75BB72D64
共有 2 個檔案被更改,包括 13 行新增3 行删除

查看文件

@ -175,14 +175,13 @@
(bind-key "<XF86Back>" #'winner-undo)
(bind-key "<XF86Forward>" #'winner-redo)
(bind-key "<f10>" #'magit-status)
(bind-key "<f11>" #'db/org-find-links-to-current-item)
(bind-key "<f1>" #'db/run-or-hide-eshell)
(bind-key "<f2>" #'hydra-feature-shortcuts/body)
(bind-key "<f5>" (if (executable-find "ag") #'counsel-ag #'rgrep))
(bind-key "<f6>" #'hydra-zoom/body)
(bind-key "<f7>" #'dictcc)
(bind-key "<f8>" #'bm-toggle)
(bind-key "<f9>" #'db/org-add-link-to-other-item)
(bind-key "<f9>" #'hydra-org-linking/body)
(bind-key "<C-f8>" #'bm-next)
(bind-key "<C-S-f8>" #'bm-previous)
(bind-key "C-," #'mc/skip-to-previous-like-this)
@ -732,7 +731,8 @@
db/org-copy-template-for-periodic-task
db/org-find-links-to-current-item
db/org-add-link-to-other-item
db/org-add-link-to-current-clock))
db/org-add-link-to-current-clock
hydra-org-linking/body))
(use-package org
:pin "gnu"

查看文件

@ -733,6 +733,16 @@ in an Org Mode buffer or when the clock is not active."
(pcase-let ((`(,location ,description) (cl-first org-stored-links)))
(org-insert-link nil location description)))
(defhydra hydra-org-linking (:color blue :hint none)
"\nLinking between Org mode items.
_c_urrent clock _o_ther item (current buffer or default Org file)
_b_acklinks to current item _O_ther item (all text files)
"
("c" (db/org-add-link-to-current-clock))
("o" (db/org-add-link-to-other-item nil))
("O" (db/org-add-link-to-other-item t))
("b" db/org-find-links-to-current-item))
;;; End