Skip to content

Commit

Permalink
Updated the README to include documentation on the postCallVim callout
Browse files Browse the repository at this point in the history
  • Loading branch information
derekwyatt authored and philenotfound committed Mar 25, 2014
1 parent 5a81fda commit 46c2af3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions plugins/vim-interaction/README.md
Expand Up @@ -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:
Expand Down

0 comments on commit 46c2af3

Please sign in to comment.