Fixed: If you callvim on a non-existant file with a relative path, the CWD of the running gvim process is used, and that's not right. We use the PWD explicitly instead, in this case

This commit is contained in:
Derek Wyatt 2012-03-20 09:55:25 -04:00 committed by Phil Eichinger
parent cdea478f0f
commit 83071a10e7

View File

@ -8,8 +8,10 @@ function resolveFile
{
if [ -f "$1" ]; then
echo $(readlink -f "$1")
elif [[ "${1#/}" == "$1" ]]; then
echo "$(pwd)/$1"
else
echo "$1"
echo $1
fi
}