A plugin that makes it easier to interact with the (single) running instance of gvim

This commit is contained in:
Derek Wyatt 2012-03-20 08:16:44 -04:00 committed by Gaetan Semet
commit 75972f61f5
2 changed files with 2 additions and 20 deletions

View file

@ -8,10 +8,8 @@ function resolveFile
{
if [ -f "$1" ]; then
echo $(readlink -f "$1")
elif [[ "${1#/}" == "$1" ]]; then
echo "$(pwd)/$1"
else
echo $1
echo "$1"
fi
}
@ -30,7 +28,7 @@ EOH
fi
local cmd=""
local before="<esc>"
local before=""
local after=""
while getopts ":b:a:" option
do
@ -58,9 +56,6 @@ EOH
fi
cmd="$before$files$after"
gvim --remote-send "$cmd"
if typeset -f postCallVim > /dev/null; then
postCallVim
fi
}
alias v=callvim