aboutsummaryrefslogtreecommitdiff
path: root/mutt/muttrc.d/src
diff options
context:
space:
mode:
Diffstat (limited to 'mutt/muttrc.d/src')
-rwxr-xr-xmutt/muttrc.d/src7
1 files changed, 7 insertions, 0 deletions
diff --git a/mutt/muttrc.d/src b/mutt/muttrc.d/src
index 584a2785..cc2eb4ef 100755
--- a/mutt/muttrc.d/src
+++ b/mutt/muttrc.d/src
@@ -4,3 +4,10 @@ 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