commit e9ad022bb56a7f084a4a12872c6f669c0e064c72 parent b2fbf0da7eea9434cbfed9a5a527c726fd3f34df Author: Vincent Demeester <vincent@sbr.pm> Date: Mon, 20 Nov 2023 16:49:52 +0100 tools/emacs: bind denote commands… Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | tools/emacs/config/config-org.el | | | 21 | +++++++++++++++++++++ |
1 file changed, 21 insertions(+), 0 deletions(-)
diff --git a/tools/emacs/config/config-org.el b/tools/emacs/config/config-org.el @@ -166,6 +166,27 @@ ;; Using denote as the "source" of my second brain *in* org-mode. (use-package denote :after org + :bind (("C-c n n" . denote) + ("C-c n c" . denote-region) + ("C-c n N" . denote-type) + ("C-c n d" . denote-date) + ("C-c n z" . denote-signature) + ("C-c n s" . denote-subdirectory) + ("C-c n t" . denote-template) + ;; Links + ("C-c n i" . denote-link) + ("C-c n I" . denote-add-links) + ("C-c n b" . denote-backlinks) + ("C-c n f f" . denote-find-link) + ("C-c n f b" . denote-find-backlink) + ;; Renaming + ("C-c n r" . denote-rename-file) + ("C-c n R" . denote-rename-file-using-front-matter) + ;; Journal + ("C-c n j j" . denote-journal-extras-new-or-existing-entry) + ;; Dired + (:map dired-mode-map + ("C-c C-d C-i" . denote-link-dired-marked-notes))) :custom (denote-directory org-directory) (denote-rename-buffer-format "📝 %t")