diff options
author | lassulus <lass@lassul.us> | 2017-03-14 11:17:57 +0100 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-03-14 11:17:57 +0100 |
commit | a65124b2f120412c61deb60484ad3e6d48f4d35d (patch) | |
tree | ef2ba2a3757d313cbb68ab0c0c4d09bd0284f014 /lass | |
parent | 95233bbf0ae9314d39d2642006d0e8d70f0e4a21 (diff) |
l 2 mail: extend default keybindings
Diffstat (limited to 'lass')
-rw-r--r-- | lass/2configs/mail.nix | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/lass/2configs/mail.nix b/lass/2configs/mail.nix index e4b319528..a08dc88da 100644 --- a/lass/2configs/mail.nix +++ b/lass/2configs/mail.nix @@ -66,7 +66,6 @@ let # notmuch bindings macro index \\\\ "<vfolder-from-query>" # looks up a hand made query - macro index A "<modify-labels>+archive -unread -inbox\n" # tag as Archived macro index + "<modify-labels>+*\n<sync-mailbox>" # tag as starred macro index - "<modify-labels>-*\n<sync-mailbox>" # tag as unstarred @@ -75,9 +74,25 @@ let bind index d noop bind pager d noop + bind index S noop + bind index s noop bind pager S noop + bind pager s noop macro index S "<modify-labels-then-hide>-inbox -unread +junk\n" # tag as Junk mail + macro index s "<modify-labels>-junk\n" # tag as Junk mail macro pager S "<modify-labels-then-hide>-inbox -unread +junk\n" # tag as Junk mail + macro pager s "<modify-labels>-junk\n" # tag as Junk mail + + + bind index A noop + bind index a noop + bind pager A noop + bind pager a noop + macro index A "<modify-labels>+archive -unread -inbox\n" # tag as Archived + macro index a "<modify-labels>-archive\n" # tag as Archived + macro pager A "<modify-labels>+archive -unread -inbox\n" # tag as Archived + macro pager a "<modify-labels>-archive\n" # tag as Archived + bind index t noop bind pager t noop |