diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-03-20 18:19:13 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-03-20 18:19:13 -0700 |
commit | 30c45021d417c3890e847493b3ce61127a085fb5 (patch) | |
tree | cb682da144e913fc20f10a158c8e1c4b9d6fcb48 /archive | |
parent | e1de7e0661dfbde19872d06c1b27b42d9ca04d91 (diff) | |
download | mu-30c45021d417c3890e847493b3ce61127a085fb5.tar.gz |
6155
Diffstat (limited to 'archive')
-rwxr-xr-x | archive/1.vm/sandbox/mu_run | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archive/1.vm/sandbox/mu_run b/archive/1.vm/sandbox/mu_run index b96cfd1c..c10e6ac7 100755 --- a/archive/1.vm/sandbox/mu_run +++ b/archive/1.vm/sandbox/mu_run @@ -1,4 +1,4 @@ -#!/usr/bin/zsh +#!/usr/bin/env zsh # Little bit of glue to support running Mu from Vim over tmux. export ALREADY_FOCUSED=0 @@ -14,3 +14,5 @@ if [[ $ALREADY_FOCUSED -eq 0 ]] then tmux last-pane fi + +exit 0 # avoid spurious error messages under tmux |