Skip to content

Instantly share code, notes, and snippets.

@watagashi
Created May 10, 2018 21:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save watagashi/0c24611807c71104ab2c01e72fbc93a3 to your computer and use it in GitHub Desktop.
Save watagashi/0c24611807c71104ab2c01e72fbc93a3 to your computer and use it in GitHub Desktop.
diff --git a/plug.vim b/plug.vim
index 9ebcf53..883187b 100644
--- a/plug.vim
+++ b/plug.vim
@@ -799,7 +799,7 @@ function! s:bang(cmd, ...)
let cmd = a:0 ? s:with_cd(a:cmd, a:1) : a:cmd
if s:is_win
let batchfile = tempname().'.bat'
- call writefile(['@echo off', cmd], batchfile)
+ call writefile(['@echo off', cmd], s:shellesc(batchfile))
let cmd = batchfile
endif
let g:_plug_bang = (s:is_win && has('gui_running') ? 'silent ' : '').'!'.escape(cmd, '#!%')
@@ -1196,7 +1196,7 @@ function! s:spawn(name, cmd, opts)
let s:jobs[a:name] = job
let cmd = has_key(a:opts, 'dir') ? s:with_cd(a:cmd, a:opts.dir) : a:cmd
if !empty(job.batchfile)
- call writefile(['@echo off', cmd], job.batchfile)
+ call writefile(['@echo off', cmd], s:shellesc(batchfile))
let cmd = job.batchfile
endif
let argv = add(s:is_win ? ['cmd', '/c'] : ['sh', '-c'], cmd)
@@ -2023,7 +2023,7 @@ function! s:system(cmd, ...)
let cmd = a:0 > 0 ? s:with_cd(a:cmd, a:1) : a:cmd
if s:is_win
let batchfile = tempname().'.bat'
- call writefile(['@echo off', cmd], batchfile)
+ call writefile(['@echo off', cmd], s:shellesc(batchfile))
let cmd = batchfile
endif
return system(s:is_win ? '('.cmd.')' : cmd)
@@ -2357,7 +2357,7 @@ function! s:preview_commit()
let cmd = 'cd '.s:shellesc(g:plugs[name].dir).' && git show --no-color --pretty=medium '.sha
if s:is_win
let batchfile = tempname().'.bat'
- call writefile(['@echo off', cmd], batchfile)
+ call writefile(['@echo off', cmd], s:shellesc(batchfile))
let cmd = batchfile
endif
execute 'silent %!' cmd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment