]> git.madduck.net Git - etc/mutt.git/blobdiff - .mutt/batch-subject-editor

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:

disable opportunistic encrption
[etc/mutt.git] / .mutt / batch-subject-editor
index 8cfbf5dd55a25fcfc0ac6ddc1a3bd96c16e191ff..0649ac5de7b168804dbd51fdcf3017d5c9c6b288 100755 (executable)
@@ -9,6 +9,10 @@
 #
 set -eu
 
+if [ -z "${__RLWRAPPED:-}" ] && [ -x $(command -v rlwrap) ]; then
+  __RLWRAPPED=true exec rlwrap "$0" "$@"
+fi
+
 printf 'Enter new subject: ' >/dev/tty
 read subj </dev/tty
 
@@ -17,9 +21,12 @@ if [ -z "${subj:-}" ]; then
   exit 1
 fi
 
+SED_DELIM=,
+subj=$(echo "$subj" | sed -re "s\1a${SED_DELIM}\1a\\\&\1ag")
+
 RE_REPLY='((re|aw|antwort)([[(]?[[:digit:]]+[)]]?)?):[[:space:]]*'
 RE_SUBJ_PREFIX="^Subject:[[:space:]]*(${RE_REPLY})*"
 RE_SUBJ='.*'
-EDITOR="sed -i -re \"s,(${RE_SUBJ_PREFIX})${RE_SUBJ},\\\1$subj,i\""
+EDITOR="sed -i -re \"s${SED_DELIM}(${RE_SUBJ_PREFIX})${RE_SUBJ}${SED_DELIM}\\\1$subj${SED_DELIM}i\""
 
 printf "set editor='${EDITOR} %s'"