]> git.madduck.net Git - etc/mutt.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

make sidebar settings sourcing dependent on patch existence
authormartin f. krafft <madduck@madduck.net>
Mon, 25 Nov 2019 03:49:24 +0000 (16:49 +1300)
committermartin f. krafft <madduck@madduck.net>
Mon, 25 Nov 2019 03:49:24 +0000 (16:49 +1300)
.mutt/muttrc

index 5ef2b95680707bde432431e8ad67ecc9ba6159c0..90bd690bda6d6b232ddcce07d7c4e6b265720766 100644 (file)
@@ -13,7 +13,6 @@ source $my_confdir/keybindings
 source $my_confdir/lists
 source $my_confdir/spam
 source $my_confdir/hooks
-source $my_confdir/sidebar
 
 auto_view text/html text/calendar
 #auto_view application/x-gunzip application/x-tar-gz application/x-tar application/x-gtar
@@ -31,3 +30,7 @@ source "test -f $my_mutt_mailboxes && cat $my_mutt_mailboxes|"
 source "test -f $alias_file && cat $alias_file 2>/dev/null || echo unset alias_file|"
 
 source "mutt -DF/dev/null | grep -q send_multipart_alternative && cat $my_confdir/multipart-alternative|"
+
+# only source sidebar settings if the sidebar patch exist, i.e. default is
+# non-zero
+source "test -z $sidebar_visible || cat $my_confdir/sidebar|"