We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e3b79a commit 4c1b475Copy full SHA for 4c1b475
plugin/asyncrun.vim
@@ -3,7 +3,7 @@
3
" Maintainer: skywind3000 (at) gmail.com, 2016-2022
4
" Homepage: https://github.com/skywind3000/asyncrun.vim
5
"
6
-" Last Modified: 2022/11/13 01:40
+" Last Modified: 2022/11/13 01:42
7
8
" Run shell command in background and output to quickfix:
9
" :AsyncRun[!] [options] {cmd} ...
@@ -1364,7 +1364,7 @@ function! s:terminal_init(opts)
1364
let t = (str2nr(t))? 'hide' : 'wipe'
1365
endif
1366
1367
- if t != '' || has_key(a:opts, 'hidden')
+ if has_key(a:opts, 'hidden') || t != ''
1368
exec 'setlocal bufhidden=' . t
1369
unsilent echom 't=' . t
1370
0 commit comments