aboutsummaryrefslogtreecommitdiff
path: root/bin/exm.sh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-04-05 20:06:39 +1200
committerTom Ryder <tom@sanctum.geek.nz>2017-04-05 20:46:47 +1200
commitc8ab406749124d2e762ad5cf53963070113afd0f (patch)
tree54c9721a06957ebe7098a211eea803b0230c0f5d /bin/exm.sh
parentHandle POSIX correctness in ~/.bash_profile (diff)
downloaddotfiles-c8ab406749124d2e762ad5cf53963070113afd0f.tar.gz
dotfiles-c8ab406749124d2e762ad5cf53963070113afd0f.zip
Apply runtime shebanging to POSIX shell
Diffstat (limited to 'bin/exm.sh')
-rw-r--r--bin/exm.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/bin/exm.sh b/bin/exm.sh
new file mode 100644
index 00000000..25e3006f
--- /dev/null
+++ b/bin/exm.sh
@@ -0,0 +1,12 @@
+# Prevent Vim's ex(1) implementation from clearing the screen
+if [ -t 0 ] ; then
+ ver=$(ex --version 2>/dev/null | awk 'NR==1{print $1;exit}')
+ case $ver in
+ # Lie to Vim; tell it it's a dumb terminal, and that its required "cm"
+ # feature is invoked with a carriage return.
+ VIM)
+ cmd=$(printf 'set t_cm=\r|')
+ set -- -T dumb --cmd "${cmd%|}" "$@" ;;
+ esac
+fi
+exec ex "$@"