Skip to content

Commit fbace96

Browse files
author
skywind3000
committed
quickui runner supports -close=1 now
1 parent a5a7057 commit fbace96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/asyncrun/runner/quickui.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ endfunc
1717
function! asyncrun#runner#quickui#run(argv)
1818
let argv = a:argv
1919
let opts = {}
20-
let opts.pause = (get(argv, 'pause', 1) == 0)? 0 : 1
20+
let opts.pause = (get(argv, 'close', 0) == 0)? 1 : 0
2121
let opts.color = 'QuickBG'
2222
" unsilent echom argv
2323
if has_key(argv, 'post')

0 commit comments

Comments
 (0)