Lines Matching refs:tmpdir
59 let exepath = a:dict.tmpdir.'/'.fnamemodify(a:dict.path, ':t:r')
69 let pwd = a:dict.istemp ? a:dict.tmpdir : ''
104 let pwd = a:dict.istemp ? a:dict.tmpdir : ''
159 let output_path = a:dict.tmpdir.'/output'
165 let pwd = a:dict.istemp ? a:dict.tmpdir : ''
212 " 'tmpdir' - The path to a temporary directory that will be deleted when the
214 " 'istemp' - 1 if the path is a file inside of {dict.tmpdir} or 0 otherwise.
216 " 'tmpdir_relpath' - The {path} relative to the {tmpdir}.
218 " {dict.path} may be a path to a file inside of {dict.tmpdir} or it may be the
219 " existing path of the current buffer. If the path is inside of {dict.tmpdir}
231 " Always create a tmpdir in case the wrapped command wants it
232 let dict.tmpdir = tempname()
233 call mkdir(dict.tmpdir)
244 let dict.path = dict.tmpdir.'/'.filename
266 if has_key(dict, 'tmpdir') | silent call s:RmDir(dict.tmpdir) | endif