vote up 2 vote down star

Simply setting the SVN_EDITOR variable to "mate" does not get the job done. It opens TextMate when appropriate, but then when I save the message and exit, I'm prompted to continue, abort or try again. It seems like the buffer isn't returned to the svn command for use.

flag

80% accept rate

2 Answers

vote up 8 vote down check

You need to include a command line option in your SVN_EDITOR (or EDITOR) variable

export SVN_EDITOR='mate -w'

This makes the svn command wait for the editor to close/release the file before continuing, which is where the process is getting mucked up now.

See here.

link|flag
vote up 0 vote down

I believe you're looking for "mate -w". Just "mate" returns control to the program, while -w tells it to wait for textmate to finish.

http://manual.macromates.com/en/using_textmate_from_terminal.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.