Releases: skywind3000/asyncrun.vim
Releases · skywind3000/asyncrun.vim
20220308 - v2.9.11
- supports quickfix-id, see #239.
20220220 - v2.9.10
keep compatible with vim-7.4.1829.
20220203 - v2.9.9
- new option
g:asyncrun_pathfix
to correct relative path mismatching issue in the quickfix window (#238). - better arguments extracting.
20211224 - v2.9.7
- fixed:
-focus=0
can't return previous tabpage with-pos=TAB
- new option
-encoding=?
makes it possible to specify encoding for each command's stdout independently.
For example, you have your global g:asyncrun_encs
set to gbk
but you have a command with utf-8
encoding and you don't want to change your global settings:
:AsyncRun -encoding=utf-8 ./my_utf8_command
This will prevent changing g:asyncrun_encs
.
20211220 - v2.9.5
- new:
-once
option to buffer all output and flush them at once when job is finished (behave like vim-dispatch) - fix: when the terminal is the last window
-mode=term -close=1
will exit vim.
20211218 - v2.9.3
- handle new job option
{'stdin': 'null'}
in nvim-0.6.0 - externalize
-program=?
scripts in autoload/asyncrun/program - new option
-scroll=0
to disable quickfix auto-scrolling
20211216 - v2.9.1
- unified terminal closing behavior in both vim & neovim when
-mode=term
&-close=1
20211215 - v2.8.9
- fire
AsyncRunInit
autocmd when first calling :AsyncRun command. - new event dispatch mechanism.
- better runner handling.
20210329 - v2.8.6
better error handling.
20210328 - v2.8.5
fixed: better terminal cwd handling.