summaryrefslogtreecommitdiffhomepage
path: root/notmuch.org
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2021-10-26 07:11:58 +0100
committerjao <jao@gnu.org>2021-10-26 21:56:37 +0100
commit34288685116e90826aaa5639bafc4b5ef58b2575 (patch)
tree2caa66c91d1a2d840ae642b500921e9c57815ae9 /notmuch.org
parenta5d897e9a31a62555ac96a571818edc201123a97 (diff)
downloadelibs-34288685116e90826aaa5639bafc4b5ef58b2575.tar.gz
elibs-34288685116e90826aaa5639bafc4b5ef58b2575.tar.bz2
dehydration: transient is all we need
Diffstat (limited to 'notmuch.org')
-rw-r--r--notmuch.org34
1 files changed, 0 insertions, 34 deletions
diff --git a/notmuch.org b/notmuch.org
index 3885f02..1c1e6d7 100644
--- a/notmuch.org
+++ b/notmuch.org
@@ -494,37 +494,3 @@
(org-capture nil "X"))))
#+end_src
-* hydras
- #+begin_src emacs-lisp
- (major-mode-hydra-define notmuch-search-mode nil
- ("Tagging"
- (("*" notmuch-search-tag-all "tag all")
- ("+" notmuch-search-add-tag "add tag")
- ("-" notmuch-search-remove-tag "add tag")
- ("k" notmuch-tag-jump "jump to tag"))
- "Search"
- (("l" notmuch-search-filter "filter with additional query")
- ("t" notmuch-search-filter-by-tag "filter by tag")
- ("y" notmuch-stash-query "stash current query"))
- "Moving around"
- (("b" notmuch-search-scroll-down "scroll down")
- ("<" notmuch-search-first-thread "first thread")
- (">" notmuch-search-last-thread "last thread"))))
-
- (major-mode-hydra-define notmuch-tree-mode nil
- ("View"
- (("." jao-notmuch-toggle-mime-parts "toggle mime parts")
- ("i" jao-notmuch-show-images "toggle images")
- ("a" notmuch-tree-archive-thread-then-next "archive thread")
- ("C" jao-notmuch-echo-count "echo unread count"))
- "Mark"
- (("d" jao-notmuch-tree-delete-message "delete message")
- ("D" jao-notmuch-tree-delete-thread "delete thread")
- ("u" (jao-notmuch-tree-delete-message t) "undelete message")
- ("k" jao-notmuch-tree-read-thread "kill thread"))
- "Edit/send"
- (("r" notmuch-tree-reply-sender "reply sender")
- ("R" notmuch-tree-reply "reply all")
- ("f" notmuch-tree-forward-message "forward")
- ("e" notmuch-tree-resume-message "edit draft"))))
- #+end_src