summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJameson Rollins <jrollins@finestructure.net>2010-09-12 13:03:42 -0400
committerJameson Rollins <jrollins@finestructure.net>2010-09-12 13:03:42 -0400
commit1250ceefbc59f2d5c0472ca031b0eaf954acad66 (patch)
treea3965190b2dae2ad818d3baedac3142037ea48a9
parent940dd03833f5a597353046adf0522d6c54048157 (diff)
emacstips: attempt to fix code block formatting
-rw-r--r--emacstips.mdwn36
1 files changed, 18 insertions, 18 deletions
diff --git a/emacstips.mdwn b/emacstips.mdwn
index 94b09ff..826dfcb 100644
--- a/emacstips.mdwn
+++ b/emacstips.mdwn
@@ -76,26 +76,26 @@ As its name implies, notmuch isn't really doing that much (which is part of its
Here's an example of how to add a key binding to notmuch-show-mode
to toggle a "deleted" tag:
- (define-key notmuch-show-mode-map "d"
- (lambda ()
- "toggle deleted tag for message"
- (interactive)
- (if (member "deleted" (notmuch-show-get-tags))
- (notmuch-show-remove-tag "deleted")
- (notmuch-show-add-tag "deleted"))))
+ (define-key notmuch-show-mode-map "d"
+ (lambda ()
+ "toggle deleted tag for message"
+ (interactive)
+ (if (member "deleted" (notmuch-show-get-tags))
+ (notmuch-show-remove-tag "deleted")
+ (notmuch-show-add-tag "deleted"))))
You can do the same for threads in notmuch-search-mode by just
replacing "show" with "search" in the called functions. This
definition makes use of a lambda function, but you could just as
easily defined a separate function first:
- (defun notmuch-show-toggle-deleted-tag()
- "toggle deleted tag for message"
- (interactive)
- (if (member "deleted" (notmuch-show-get-tags))
- (notmuch-show-remove-tag "deleted")
- (notmuch-show-add-tag "deleted")))
- (define-key notmuch-show-mode-map "d" 'notmuch-show-toggle-deleted-tag)
+ (defun notmuch-show-toggle-deleted-tag()
+ "toggle deleted tag for message"
+ (interactive)
+ (if (member "deleted" (notmuch-show-get-tags))
+ (notmuch-show-remove-tag "deleted")
+ (notmuch-show-add-tag "deleted")))
+ (define-key notmuch-show-mode-map "d" 'notmuch-show-toggle-deleted-tag)
* <span id="fcc">**How to do FCC/BCC...**</span>
@@ -113,7 +113,7 @@ As its name implies, notmuch isn't really doing that much (which is part of its
automatically). To customize both variables at the same time, use
the fancy command:
- M-x customize-apropos<RET>\(notmuch-fcc-dirs\)\|\(message-directory\)
+ M-x customize-apropos<RET>\(notmuch-fcc-dirs\)\|\(message-directory\)
This method will even allow you to select different outboxes
depending on your selected from address, if you need that
@@ -128,9 +128,9 @@ As its name implies, notmuch isn't really doing that much (which is part of its
configure this mode, edit your ${HOME}/.emacs file and include text
something like the following:
- (setq notmuch-folders '(("inbox" . "tag:inbox")
- ("unread" . "tag:inbox AND tag:unread")
- ("notmuch" . "tag:inbox AND to:notmuchmail.org")))
+ (setq notmuch-folders '(("inbox" . "tag:inbox")
+ ("unread" . "tag:inbox AND tag:unread")
+ ("notmuch" . "tag:inbox AND to:notmuchmail.org")))
Of course, you can have any number of folders, each configured
with any supported search terms (see "notmuch help search-terms").