Skip to content

Commit 9f5b4ec

Browse files
author
skywind3000
committed
update asyncrun 2.11.19
1 parent a72a952 commit 9f5b4ec

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

plugin/asyncrun.vim

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
" Maintainer: skywind3000 (at) gmail.com, 2016-2023
44
" Homepage: https://github.com/skywind3000/asyncrun.vim
55
"
6-
" Last Modified: 2023/08/03 13:04
6+
" Last Modified: 2023/08/03 15:40
77
"
88
" Run shell command in background and output to quickfix:
99
" :AsyncRun[!] [options] {cmd} ...
@@ -1430,6 +1430,9 @@ function! s:terminal_open(opts)
14301430
endif
14311431
endif
14321432
if &bt == 'terminal'
1433+
if has_key(a:opts, 'hint')
1434+
let b:asyncrun_hint = get(a:opts, 'hint', '')
1435+
endif
14331436
if has_key(a:opts, 'init')
14341437
let init = get(a:opts, 'init', '')
14351438
try
@@ -2258,7 +2261,7 @@ endfunc
22582261
" asyncrun - version
22592262
"----------------------------------------------------------------------
22602263
function! asyncrun#version()
2261-
return '2.11.18'
2264+
return '2.11.19'
22622265
endfunc
22632266

22642267

0 commit comments

Comments
 (0)