2010-05-07 6 views

Antwort

9

Sie können die Umgebungsvariablen in Vim mit dem Befehl :let ändern.

let s:portablepy = 'C:\portable\PortablePython_1.1_py2.5.4' 
" Add PortablePython's path to $PATH if running on Windows and PortablePython exists 
if (has('win32') || has('win64')) && isdirectory(s:portablepy) 
    let $PATH .= ';' . s:portablepy 
endif 
+0

Perfekt. Genau das, wonach ich gesucht habe. – Jim

Verwandte Themen