aboutsummaryrefslogtreecommitdiff
path: root/mutt/muttrc.d/src
diff options
context:
space:
mode:
Diffstat (limited to 'mutt/muttrc.d/src')
-rwxr-xr-xmutt/muttrc.d/src13
1 files changed, 0 insertions, 13 deletions
diff --git a/mutt/muttrc.d/src b/mutt/muttrc.d/src
deleted file mode 100755
index cc2eb4ef..00000000
--- a/mutt/muttrc.d/src
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-# Helper script to emit the source all muttrc subfiles, in LC_COLLATE order
-for rc in "$HOME"/.muttrc.d/*.rc ; do
- [ -e "$rc" ] || continue
- cat -- "$rc"
-done
-
-# Special case: if using GNU Emacs, emit a line to disable edit_headers, just
-# because at the moment I haven't worked out how to make this work sanely with
-# messages-are-flowing in message-mode.
-case $VISUAL in
- emacs|emacsclient) printf 'set edit_headers = no\n' ;;
-esac