Skip to content

Commit e74f19f

Browse files
author
skywind3000
committed
revert command completion mode from "shellcmd" back to "file" because of a regression that '%' will not be substituted when using "shellcmd": see #264
1 parent b32d598 commit e74f19f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugin/asyncrun.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
" Maintainer: skywind3000 (at) gmail.com, 2016-2022
44
" Homepage: https://github.com/skywind3000/asyncrun.vim
55
"
6-
" Last Modified: 2022/11/02 18:41
6+
" Last Modified: 2022/11/03 11:05
77
"
88
" Run shell command in background and output to quickfix:
99
" :AsyncRun[!] [options] {cmd} ...
@@ -2107,7 +2107,7 @@ endfunc
21072107
" asyncrun - version
21082108
"----------------------------------------------------------------------
21092109
function! asyncrun#version()
2110-
return '2.10.8'
2110+
return '2.10.9'
21112111
endfunc
21122112

21132113

@@ -2131,7 +2131,7 @@ endfunc
21312131
"----------------------------------------------------------------------
21322132
" Commands
21332133
"----------------------------------------------------------------------
2134-
command! -bang -nargs=+ -range=0 -complete=shellcmd AsyncRun
2134+
command! -bang -nargs=+ -range=0 -complete=file AsyncRun
21352135
\ call asyncrun#run('<bang>', '', <q-args>, <count>, <line1>, <line2>)
21362136

21372137
command! -bar -bang -nargs=0 AsyncStop call asyncrun#stop('<bang>')

0 commit comments

Comments
 (0)