From: Richard Russon Date: Thu, 13 Jul 2023 09:50:40 +0000 (+0100) Subject: fix macros using enter X-Git-Url: https://git.cworth.org/git?p=notmuch-wiki;a=commitdiff_plain;h=516f9ab734e415af133066ab90c5d866f4a6fc97 fix macros using enter The macros contain \\n which is too-escaped. It means that \n ends up in the modify-labels prompt. Fix the macros to use rather than \n --- diff --git a/mutttips.mdwn b/mutttips.mdwn index d2452a5..eb6bf8f 100644 --- a/mutttips.mdwn +++ b/mutttips.mdwn @@ -48,11 +48,11 @@ Here is my `.muttrc` I use with `mutt-kz`, explanations as comments: "Sent" "notmuch://?query=tag:sent" # sets up queries for virtual folders # notmuch bindings macro index \\\\ "" # looks up a hand made query - macro index A "+archive -unread -inbox\\n" # tag as Archived - macro index I "-inbox -unread\\n" # removed from inbox - macro index S "-inbox -unread +junk\\n" # tag as Junk mail - macro index + "+*\\n" # tag as starred - macro index - "-*\\n" # tag as unstarred + macro index A "+archive -unread -inbox" # tag as Archived + macro index I "-inbox -unread" # removed from inbox + macro index S "-inbox -unread +junk" # tag as Junk mail + macro index + "+*" # tag as starred + macro index - "-*" # tag as unstarred # sidebar set sidebar_width = 20 set sidebar_visible = yes # set to "no" to disable sidebar view at startup