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

otherwise
pull/757/head
sveneh 2015-08-08 23:08:33 +02:00 committed by sveneh
parent 0b57d84320
commit d05c88a23b
1 changed files with 2 additions and 2 deletions

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