Skip to content

Commit 07653d6

Browse files
committed
Remove an unnecessary space from the grep command line
1 parent 6599ee5 commit 07653d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/EasyGrep.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2581,7 +2581,7 @@ function! s:GetGrepCommandLine(pattern, add, wholeword, count, escapeArgs)
25812581
let filesToGrep = join(fileTargetList, ' ')
25822582

25832583
let win = g:EasyGrepWindow != 0 ? "l" : ""
2584-
let grepCommand = a:count.win.com.a:add.bang." ".opts." ".pattern.patternpost." ".filesToGrep
2584+
let grepCommand = a:count.win.com.a:add.bang." ".opts.pattern.patternpost." ".filesToGrep
25852585

25862586
return grepCommand
25872587
endfunction

0 commit comments

Comments
 (0)