diff options
author | Franck Cuny <franck@fcuny.net> | 2022-10-14 17:43:07 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-10-14 17:43:07 -0700 |
commit | 76a09927cc2192e99250fc219ffacd6b3b783635 (patch) | |
tree | 4ea9e0403be456205812bdd90ea7518a2b292e45 | |
parent | ref(text): use gfm-mode for README.md files (diff) | |
download | emacs.d-76a09927cc2192e99250fc219ffacd6b3b783635.tar.gz |
ref(org-mode): drop references to notmuch
I forgot to clean this up when I delete the code for notmuch. Change-Id: I56e0ad26ee3f0375d1814f47c6856931501b70da
-rw-r--r-- | emacs/custom/my-org.el | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/emacs/custom/my-org.el b/emacs/custom/my-org.el index 4a7faaf..f49bc6b 100644 --- a/emacs/custom/my-org.el +++ b/emacs/custom/my-org.el @@ -8,7 +8,6 @@ (require 'org-archive) (require 'ox) (require 'ox-md) -(require 'ol-notmuch) (defvar my/org-directory (if (memq window-system '(mac ns)) @@ -120,17 +119,6 @@ (file+olp+datetree "journal.org") "* %?\n:PROPERTIES:\n:CREATED: %T\n:END:\n" :tree-type day))) -(setq org-capture-templates-contexts - ;; only show the capture template for emails when in a notmuch - ;; buffer - '(("m" ((in-mode . "notmuch-search-mode") - (in-mode . "notmuch-show-mode") - (in-mode . "notmuch-tree-mode"))))) - -;; elisp links to these functions are considered safe, I don't need a -;; prompt to confirm if that's what I want to execute. -(setq org-link-elisp-skip-confirm-regexp (rx (or "elfeed" "notmuch"))) - ;; https://stackoverflow.com/questions/20164918/how-to-untick-checkboxes-in-org-mode-for-the-next-cyclic-repetitive-task (defun my/org-reset-checkbox-state-maybe () "Reset all checkboxes in an entry if the `RESET_CHECK_BOXES' property is set." |