We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3975ac8 commit b514374Copy full SHA for b514374
autoload/gundo.vim
@@ -280,10 +280,10 @@ endfunction"}}}
280
function! s:GundoOpen()"{{{
281
if !exists('g:gundo_py_loaded')
282
if s:has_supported_python == 2 && g:gundo_prefer_python3
283
- exe 'py3file ' . s:plugin_path . '/gundo.py'
+ exe 'py3file ' . escape(s:plugin_path, ' ') . '/gundo.py'
284
python3 initPythonModule()
285
else
286
- exe 'pyfile ' . s:plugin_path . '/gundo.py'
+ exe 'pyfile ' . escape(s:plugin_path, ' ') . '/gundo.py'
287
python initPythonModule()
288
endif
289
0 commit comments