bash_aliases: remove gvim alias

This commit is contained in:
Josh Holtrop 2015-05-20 09:13:54 -04:00
parent 52fe3c1d5a
commit 8e50873282

View File

@ -114,15 +114,15 @@ cd_hook
alias grep='grep --color=auto'
alias grepnosvn='grep --color=auto --exclude-dir=".svn" --exclude-dir=".git"'
alias egrepnosvn='egrep --color=auto --exclude-dir=".svn" --exclude-dir=".git"'
function gvim()
{
arg="$1"
if [ "${arg}" = "" ]; then
command gvim
else
command gvim --remote-tab-silent "$@"
fi
}
#function gvim()
#{
# arg="$1"
# if [ "${arg}" = "" ]; then
# command gvim
# else
# command gvim --remote-tab-silent "$@"
# fi
#}
alias cribbage='cribbage -r'
alias backgammon='backgammon -r -pb'
alias ls='ls --color=auto'