vimrunner
vimrunner copied to clipboard
Control a vim instance through ruby code
The previous method of closing input/output unconditionally will cause Vim to end with SIGHUP, which causes a wrapping process using Python's `subprocess` module to abort: 10342 0.000166 write(1, "Vim: Finished.\r\n",...
This patch is a first draft toward the resolution of RfC #32. The following modifications were required: - In vimrc, ~/.vim becomes ~/vimfiles under Windows - The win32 gvim version...
Hey! A friend of mine, @jarmo, was helping me test [Node.vim](https://github.com/moll/vim-node) on Windows and it turns out Vimrunner doesn't run there at all. Let's get it working! Have you made...
I am trying to track coverage with vimrunner (via https://github.com/Vimjas/covimerage/), but the problem appears to be that it spawns a gvim instance without waiting for it. My current attempt is...
We're using vimrunnter for https://github.com/Vimjas/vim-python-pep8-indent, and I've noticed that switching to the "Trusty" images on Travis (from Precise) slows down the tests from 2 minutes to 10, and there has...
After a bunch (15-20) tests the suite from https://github.com/Vimjas/vim-python-pep8-indent stalls. Adding some `puts` the last `--remote-expr` is `vim --servername VIMRUNNER0.687345666041246 --remote-expr feedkeys("iclass Foo(\")` In this case `vim --servername VIMRUNNER0.687345666041246 --remote-expr...
As discussed in https://github.com/AndrewRadev/vimrunner/pull/19, there's a lot of sense in providing an option to keep the spawned Vim around after the script has exited. Currently, this works with the `:foreground...
Based on discussion in #12, reconsider the API provided by `Vimrunner::Client` to: - Provide raw access to the `--remote-send` and `--remote-expr` interfaces; - Allow for the execution of commands and...