asyncrun.vim
asyncrun.vim copied to clipboard
How to define a :Make alias for AsyncRun make equivalent command
The closest I could get is this:
command! -bang -nargs=* -complete=file Make call asyncrun#run('<bang>', '', 'make <q-args>') | cwindow 10'
It would work if I'd specify an additional arguments like - :Make V=99, but it wouldn't without
Please add an example to the readme if it's possible
f-args helped. Update the readme anyway. I didn't enjoy digging that mammoth shit vim scripting syntax
See also https://github.com/skywind3000/asyncrun.vim/issues/96
Thank @Konfekt , I took his idea and fixed this issue:
see here.
https://github.com/skywind3000/asyncrun.vim/issues/96