Skip to content

Commit

Permalink
fix for pathname include space when windows
Browse files Browse the repository at this point in the history
  • Loading branch information
malblue committed Jun 6, 2015
1 parent fee425d commit a206bd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/unite/sources/vimgrep.vim
Expand Up @@ -111,7 +111,7 @@ function! s:source.gather_candidates(args, context) "{{{

let cmdline = printf('silent vimgrep /%s/j %s',
\ escape(a:context.source__input, '/'),
\ join(a:context.source__targets))
\ join(map(copy(a:context.source__targets), 'escape(v:val, " ")')))

call unite#print_source_message(
\ 'Command-line: ' . cmdline, s:source.name)
Expand Down

0 comments on commit a206bd7

Please sign in to comment.