vim-dispatch
vim-dispatch copied to clipboard
dispatch.vim: Asynchronous build and test dispatcher
Somewhat similar to #169 except I'm on Windows10. I saw that it needs to have a matching errorformat, but that seems like its not a problem given that `:Copen` correctly...
This may be a long shot, and it's tmux-specific: I often zoom the tmux pane that vim lives in when I want to focus on writing code. I still need...
Hi all, I have autocmd FileType java let b:dispatch = 'javac %' in ~/.vimrc and when I run :Dispatch, Vim shows only one error in quickfix window though there are...
When I do `:Make`, the output of `!make` goes below the status line, and thus is highlighted as if it's part of the status line, resulting in a weird looking...
I have found the command FocusDispatch to be incredibly useful to easily change compiler flags. A FocusStart would be just as useful to change command line arguments to the script...
If you run a command (for example a rake task with a progress bar) that output will be sent into the resulting buffer for every flush. In my case I...
`copen` command can take a height option for the quickfix window and, as far as I can tell, that height is preserved until the next explicit invocation of `copen`. Could...
I'm trying to do this: ``` autocmd BufNewFile,BufRead *_spec.rb compiler rspec | set makeprg=`([\ -e\ .zeus.sock\ ]&&echo\ zeus)\ \\\|\\\|\ ([\ -e\ Gemfile\ ]&&echo\ bundle\ exec)`\ rspec ``` This works fine...
After running a `:Dispatch`, is it possible to put scroll position at the bottom of the Location List? It's jarring to watch a mvn build progress, then jump to the...
I am trying to configure dispatch to work with my C++ workflow. If I would like to run my cpp code, ideally I would follow the following steps: `1) Build...