Hello everyone, I don't know if this has already been done I use "vim72d32.zip" to install vim in my freedos. When finish install, back to the root C:\ run "C:\> vim" But it can't work, the Command-line display this "c:\vim72\vim.exe not found". Then I look at c:\fdos\bin\vim.bat, I found some mistakes.
I think this 4 lines is wrong in the vim.bat : line 5: if exist "%VIM%\vim72\vim.exe" set VIM_EXE_DIR=%VIM%\vim72 line 6: if exist "%VIMRUNTIME%\vim.exe" set VIM_EXE_DIR=%VIMRUNTIME % line 8: if exist "%VIM_EXE_DIR%\vim.exe" goto havevim line 9: echo "%VIM_EXE_DIR%\vim.exe" not found Change them into : line 5: if exist %VIM%\vim72\vim.exe set VIM_EXE_DIR=%VIM%\vim72 line 6: if exist %VIMRUNTIME%\vim.exe set VIM_EXE_DIR=%VIMRUNTIME% line 8: if exist %VIM_EXE_DIR%\vim.exe goto havevim line 9: echo %VIM_EXE_DIR%\vim.exe not found Just take out the quote. it works :) --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_dev" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
