From a8cd445ea971cdc6e2ebbedb6e0786d2c24aa972 Mon Sep 17 00:00:00 2001 From: Christoph Berg Date: Sun, 20 Jul 2008 00:30:50 +0200 Subject: [PATCH] Add example sidebar config, thanks Stefano Zacchiroli. (Closes: #460452) --- debian/changelog | 3 +- debian/extra/samples/sidebar.muttrc | 74 +++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+), 1 deletion(-) create mode 100644 debian/extra/samples/sidebar.muttrc diff --git a/debian/changelog b/debian/changelog index 6721503..ca00df6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,9 @@ mutt (1.5.18-3) unstable; urgency=low * Pull patch from upstream to fix multipart decoding. (Closes: #489283) + * Add example sidebar config, thanks Stefano Zacchiroli. (Closes: #460452) - -- Christoph Berg Sun, 20 Jul 2008 00:00:16 +0200 + -- Christoph Berg Sun, 20 Jul 2008 00:28:41 +0200 mutt (1.5.18-2) unstable; urgency=low diff --git a/debian/extra/samples/sidebar.muttrc b/debian/extra/samples/sidebar.muttrc new file mode 100644 index 0000000..8bb1574 --- /dev/null +++ b/debian/extra/samples/sidebar.muttrc @@ -0,0 +1,74 @@ +# shamelessly copied from +# http://www.lunar-linux.org/index.php?option=com_content&task=view&id=44 + +# set up the sidebar, default not visible +set sidebar_width=12 +set sidebar_visible=no +set sidebar_delim='|' + +# which mailboxes to list in the sidebar +mailboxes =inbox =ml + +# color of folders with new mail +color sidebar_new yellow default + +# ctrl-n, ctrl-p to select next, prev folder +# ctrl-o to open selected folder +bind index \CP sidebar-prev +bind index \CN sidebar-next +bind index \CO sidebar-open +bind pager \CP sidebar-prev +bind pager \CN sidebar-next +bind pager \CO sidebar-open + +# I don't need these. just for documentation purposes. See below. +# sidebar-scroll-up +# sidebar-scroll-down + +# b toggles sidebar visibility +macro index b 'toggle sidebar_visible' +macro pager b 'toggle sidebar_visible' + +# Remap bounce-message function to "B" +bind index B bounce-message + +# +# Mario Holbe suggests: +# macro index b 'toggle sidebar_visible' +# macro pager b 'toggle sidebar_visible' +# + + +# Documentation +# ============= +# +# sidebar_width (number) +# Width of the sidebar. +# +# sidebar_visible (boolean) +# Whether or not the sidebar is visible. +# +# sidebar_delim (string) +# Specifies the delimiter between the sidebar and other screens +# +# color sidebar_new [fg] [bg] +# The foreground (fg) and background (bg) color of folders that contain new +# mail. +# +# sidebar-prev +# Mutt's name for the operation that selects the previous folder. +# +# sidebar-next +# Mutt's name for the operation that selects the next folder. +# +# sidebar-open +# Mutt's name for the operation that opens the currently selected folder. +# +# sidebar-scroll-up +# Only useful if you have more folders than lines in your terminal: scrolls one +# page up through the list of folders. +# +# sidebar-scroll-down +# Only useful if you have more folders than lines in your terminal: scrolls one +# page down through the list of folders. +# -- 2.43.0