Skip to content
This repository was archived by the owner on Feb 6, 2020. It is now read-only.

Commit a25dcdd

Browse files
committed
fix space in path for windows
1 parent 5521581 commit a25dcdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/mkdp.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ endfu
9696
fun! s:serverStart() abort "function for starting the server
9797
let g:mkdp_port = g:mkdp_port + localtime()[7:10]
9898
if s:mkdp_is_windows()
99-
exec "silent !start /b python " . s:path_to_server . ' ' . g:mkdp_port
99+
exec "silent !start /b python " . '"' . s:path_to_server . '" ' . g:mkdp_port
100100
else
101101
call system("python " . s:path_to_server . " " . g:mkdp_port . " &>/dev/null &")
102102
endif

0 commit comments

Comments
 (0)