Under *nix I can set SVN_EDITOR to gvim --nofork to do the trick, but that doesn’t seem to work under Windows. Is there any solution for that?
Under *nix I can set SVN_EDITOR to gvim –nofork to do the trick, but
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you have installed the batch files (c:\windows\gvim.bat), just set
EDITORtogvim -f, the batch file processes the -f argument and sets the no-fork option.The trick in the batch file is running
START /WAIT path\to\gvim.exe %*(see the /WAIT argument).If you don’t have the batch files, just create a new one with the command above, and set
EDITORto the newly create batch file.