]> git.llucax.com Git - software/mutt-debian.git/blob - debian/extra/samples/sidebar.muttrc
removing an article form the Description of mutt-patched to make lintian happy
[software/mutt-debian.git] / debian / extra / samples / sidebar.muttrc
1 # shamelessly copied from
2 # http://www.lunar-linux.org/index.php?option=com_content&task=view&id=44
3
4 # set up the sidebar, default not visible
5 set sidebar_width=12
6 set sidebar_visible=no
7 set sidebar_delim='|'
8
9 # which mailboxes to list in the sidebar
10 mailboxes =inbox =ml
11
12 # color of folders with new mail
13 color sidebar_new yellow default
14
15 # ctrl-n, ctrl-p to select next, prev folder
16 # ctrl-o to open selected folder
17 bind index \CP sidebar-prev
18 bind index \CN sidebar-next
19 bind index \CO sidebar-open
20 bind pager \CP sidebar-prev
21 bind pager \CN sidebar-next
22 bind pager \CO sidebar-open
23
24 # I don't need these. just for documentation purposes. See below.
25 # sidebar-scroll-up
26 # sidebar-scroll-down
27
28 # b toggles sidebar visibility
29 macro index b '<enter-command>toggle sidebar_visible<enter>'
30 macro pager b '<enter-command>toggle sidebar_visible<enter>'
31
32 # Remap bounce-message function to "B"
33 bind index B bounce-message
34
35 #
36 # Mario Holbe suggests:
37 # macro index b '<enter-command>toggle sidebar_visible<enter><refresh>'
38 # macro pager b '<enter-command>toggle sidebar_visible<enter><redraw-screen>'
39
40
41
42 # Documentation
43 # =============
44 #
45 # sidebar_width (number)
46 # Width of the sidebar.
47
48 # sidebar_visible (boolean)
49 # Whether or not the sidebar is visible.
50
51 # sidebar_delim (string)
52 # Specifies the delimiter between the sidebar and other screens
53 #
54 # sidebar_shortpath (boolean)
55 # When using IMAP, a '.' is often used as a separator. This option
56 # allows to shorten the folder name to the part after the last dot.
57
58 # sidebar_sort (boolean)
59 # Sorts the folders in the sidebar alphabetically.
60 #
61 # color sidebar_new [fg] [bg]
62 # The foreground (fg) and background (bg) color of folders that contain new
63 # mail.
64
65 # sidebar-prev
66 # Mutt's name for the operation that selects the previous folder.
67
68 # sidebar-next
69 # Mutt's name for the operation that selects the next folder.
70
71 # sidebar-open
72 # Mutt's name for the operation that opens the currently selected folder.
73
74 # sidebar-scroll-up
75 # Only useful if you have more folders than lines in your terminal: scrolls one
76 # page up through the list of folders.
77
78 # sidebar-scroll-down
79 # Only useful if you have more folders than lines in your terminal: scrolls one
80 # page down through the list of folders. 
81 #