new name for alias, will break functionality of original gvim command

otherwise
This commit is contained in:
sveneh
2015-08-08 23:08:33 +02:00
committed by sveneh
parent 0b57d84320
commit d05c88a23b

View File

@@ -9,9 +9,9 @@ MVIM=$(command -v mvim)
case $OSTYPE in
darwin*)
[[ -n $MVIM ]] && alias mvim="mvim --remote-tab"
[[ -n $MVIM ]] && alias mvimt="mvim --remote-tab"
;;
*)
[[ -n $GVIM ]] && alias gvim="gvim -b --remote-tab"
[[ -n $GVIM ]] && alias gvimt="gvim --remote-tab"
;;
esac