Releases: skywind3000/asyncrun.vim
Releases · skywind3000/asyncrun.vim
20221119 - v2.11.3
- new option
g:asyncrun_term_wipe
, set to non-zero to change the&bufhidden
of terminal buffer to 'wipe' when command finished. - the default value of
g:asyncrun_term_wipe
is1
.
20221113 - v2.11.2
- terminal buffers: accept
-hidden=0
to initbufhidden
towipe
for terminal buffers. - terminal buffers: new option
g:asyncrun_term_hidden
to set the default value of-hidden=?
.
20221103 - v2.10.9
- revert command completion mode from "shellcmd" back to "file" because
- The '%' will not be substituted when using "shellcmd", see: #264
20221102 - v2.10.8
- improve
<nomodeline>
compatibility. - take care of the
&makeencoding
option; - new program translator capture to capture terminal output to the quickfix window
capture example:
:AsyncRun -mode=term -pos=TAB -program=capture ls -la
The output of this terminal command will be captured and listed in the quickfix window
20221030 - v2.10.6
20221012 - v2.10.5
- Use
<nomodeline>
in :doautocmd, see #259. - new option
g:asyncrun_show_time
, set to1
to display the command start time in the first line of quickfix window.
Example:
let g:asyncrun_show_time = 1
or set it to a non-empty string to specify time format:
let g:asyncrun_show_time = '%Y/%m/%d %T'
Result:
20221006 - v2.10.0
- Better project root detection for buffers with
nofile
buftype.
20220923 - v2.9.15
- new:
AsyncReset
command to reset all internal status
20220615 - v2.9.13
Simplify event dispatch routines
20220615 - v2.9.12
fix: tab page restoration when focus=0
& reuse=1