Lines Matching refs:pwd
69 let pwd = a:dict.istemp ? a:dict.tmpdir : ''
70 let output = s:system(pwd, shellescape(rustc) . " " . join(map(rustc_args, 'shellescape(v:val)')))
104 let pwd = a:dict.istemp ? a:dict.tmpdir : ''
105 let output = s:system(pwd, shellescape(rustc) . " " . join(map(args, 'shellescape(v:val)')))
165 let pwd = a:dict.istemp ? a:dict.tmpdir : ''
166 let output = s:system(pwd, shellescape(rustc) . " " . join(map(args, 'shellescape(v:val)')))
353 " Executes {cmd} with the cwd set to {pwd}, without changing Vim's cwd.
354 " If {pwd} is the empty string then it doesn't change the cwd.
355 function! s:system(pwd, cmd) argument
357 if !empty(a:pwd)
358 let cmd = 'cd ' . shellescape(a:pwd) . ' && ' . cmd