diff options
author | Derek Wyatt <derek@derekwyatt.org> | 2012-03-30 06:39:49 -0400 |
---|---|---|
committer | Phil Eichinger <phil@zankapfel.net> | 2014-03-25 16:47:57 +0100 |
commit | 46c2af396a80a4dda8ce46577249b7aa81ea0849 (patch) | |
tree | dd4ab3fce8393edd0dc868542480024bd08173d1 /plugins | |
parent | 5a81fda42a48587fb27acb8c5d1e64e1d7c90b6c (diff) | |
download | zsh-46c2af396a80a4dda8ce46577249b7aa81ea0849.tar.gz zsh-46c2af396a80a4dda8ce46577249b7aa81ea0849.tar.bz2 zsh-46c2af396a80a4dda8ce46577249b7aa81ea0849.zip |
Updated the README to include documentation on the postCallVim callout
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/vim-interaction/README.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/vim-interaction/README.md b/plugins/vim-interaction/README.md index 65e678b51..681648018 100644 --- a/plugins/vim-interaction/README.md +++ b/plugins/vim-interaction/README.md @@ -25,6 +25,19 @@ There are a few aliases presented as well: * `vvsp` Edits the passed in file but first makes a vertical split * `vhsp` Edits the passed in file but first makes a horizontal split +## Post Callout ## + +At the end of the `callvim` function we invoke the `postCallVim` function if it +exists. If you're using MacVim, for example, you could define a function that +brings window focus to it after the file is loaded: + + function postCallVim + { + osascript -e 'tell application "MacVim" to activate' + } + +This'll be different depending on your OS / Window Manager. + ## Examples ## This will load `/tmp/myfile.scala` into the running GVim session: |