mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-20 03:02:29 +01:00
A plugin that makes it easier to interact with the (single) running instance of gvim
This commit is contained in:
parent
bb2e18c635
commit
75972f61f5
2 changed files with 2 additions and 20 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue