Skip to content

Commit

Permalink
patch 8.2.3441: MS-Windows: vimtutor can't handle path with spaces
Browse files Browse the repository at this point in the history
Problem:    MS-Windows: vimtutor can't handle path with spaces.
Solution:   Add double quotes. (Christian Brabandt, closes vim#8871)
  • Loading branch information
chrisbra authored and brammool committed Sep 15, 2021
1 parent f2a8baf commit ee2cbcd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -755,6 +755,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
3441,
/**/
3440,
/**/
Expand Down
2 changes: 1 addition & 1 deletion vimtutor.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

:: Use Vim to copy the tutor, it knows the value of $VIMRUNTIME
FOR %%d in (. %TMP% %TEMP%) DO (
call :test_dir_writable %~dpf0 %%d
call :test_dir_writable "%~dpf0" %%d
IF NOT ERRORLEVEL 1 GOTO dir_ok
)

Expand Down

0 comments on commit ee2cbcd

Please sign in to comment.