mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-13 17:30:08 +00:00
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:
parent
e652756fdb
commit
92227f171a
1 changed files with 3 additions and 1 deletions
|
@ -8,8 +8,10 @@ function resolveFile
|
||||||
{
|
{
|
||||||
if [ -f "$1" ]; then
|
if [ -f "$1" ]; then
|
||||||
echo $(readlink -f "$1")
|
echo $(readlink -f "$1")
|
||||||
|
elif [[ "${1#/}" == "$1" ]]; then
|
||||||
|
echo "$(pwd)/$1"
|
||||||
else
|
else
|
||||||
echo "$1"
|
echo $1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue