File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 3
3
" Maintainer: skywind3000 (at) gmail.com, 2016-2023
4
4
" Homepage: https://github.com/skywind3000/asyncrun.vim
5
5
"
6
- " Last Modified: 2023/09/20 09:47
6
+ " Last Modified: 2023/09/22 14:44
7
7
"
8
8
" Run shell command in background and output to quickfix:
9
9
" :AsyncRun[!] [options] {cmd} ...
@@ -1369,7 +1369,8 @@ function! s:terminal_init(opts)
1369
1369
let b: asyncrun_cmd = a: opts .cmd
1370
1370
let b: asyncrun_name = get (a: opts , ' name' , ' ' )
1371
1371
let b: asyncrun_bid = bid
1372
- if get (a: opts , ' listed' , 1 ) == 0
1372
+ let listed = get (g: , ' asyncrun_term_listed' , 1 )
1373
+ if get (a: opts , ' listed' , listed) == 0
1373
1374
setlocal nobuflisted
1374
1375
endif
1375
1376
let hidden = get (g: , ' asyncrun_term_hidden' , ' ' )
@@ -2281,7 +2282,7 @@ endfunc
2281
2282
" asyncrun - version
2282
2283
" ----------------------------------------------------------------------
2283
2284
function ! asyncrun#version ()
2284
- return ' 2.11.23 '
2285
+ return ' 2.11.24 '
2285
2286
endfunc
2286
2287
2287
2288
You can’t perform that action at this time.
0 commit comments