blob: efb86758dafb4a4b64375e981dbd31a26fefa976 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# ==
# Regular bindings
# ===========================
# Ctrl-Shift-P – Previous Mailbox
bind index,pager \CP sidebar-prev
# Ctrl-Shift-N – Next Mailbox
bind index,pager \CN sidebar-next
# Ctrl-Shift-O – Open Highlighted Mailbox
bind index,pager \cO sidebar-open
# Shift-Tab-t — Toggle sidebar
bind index,pager <backtab>t sidebar-toggle-visible
# i — Notmuch query
bind index i vfolder-from-query
# ==
# Macros
# ===========================
macro generic ,<Space> ":source ~/.mail_config/mutt/muttrc\n" "Reload mutt's configuration file"
#macro index \cn <next-unread-mailbox>
macro pager j <next-line>
macro pager k <previous-line>
# vim: ft=muttrc
|