mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 05:40:08 +00:00
Added an optional callout to the end of the interaction function. I put it in to allow me to put the window focus on MacVim / GVim depending on the different OS I happen to be on
This commit is contained in:
parent
92227f171a
commit
04a7536641
1 changed files with 3 additions and 0 deletions
|
@ -58,6 +58,9 @@ EOH
|
||||||
fi
|
fi
|
||||||
cmd="$before$files$after"
|
cmd="$before$files$after"
|
||||||
gvim --remote-send "$cmd"
|
gvim --remote-send "$cmd"
|
||||||
|
if typeset -f postCallVim > /dev/null; then
|
||||||
|
postCallVim
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
alias v=callvim
|
alias v=callvim
|
||||||
|
|
Loading…
Reference in a new issue