Linwei
Linwei
asyncrun加载费时1毫秒不到,超简单的一个插件,没必要这么加载
you mean `:AsyncRun ls` or `:AsyncRun bash -c ls` ??
try my script: https://github.com/skywind3000/terminal in this case, you can have: ```VimL :AsyncRun python terminal.py -m wslx ls -la ``` to run your wsl commands from vim. If you have downloaded...
are you using vim on wsl ? Or on windows ? The command is for windows vim only, not for vim on wsl.
It's not a performance issue, instead, it is a flow control strategy. Populating quickfix items one by one is slower than populating all the items at once. If the strategy...
The recent vim (after 8.0.200 ?) has a similar strategy, asyncrun.vim can do nothing about this.
quickfix window can't take any input, so stdin is closed when job starts to prevent child process hang if it is waiting input. Please update to the latest AsyncRun, it...
Sadly, `` keyword is not supported in neovim, I can't distinguish the range is given or not in neovim.
Currently I detect whether range is given by: ```VimL if a:count > 0 && a:line1