How do I use TextMate as my command line subversion message editor? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T18:59:33Zhttp://stackoverflow.com/feeds/question/92826http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/92826/how-do-i-use-textmate-as-my-command-line-subversion-message-editor2How do I use TextMate as my command line subversion message editor?Seth Weiner2008-09-18T14:05:00Z2008-09-18T14:08:19Z
<p>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.</p>
http://stackoverflow.com/questions/92826/how-do-i-use-textmate-as-my-command-line-subversion-message-editor/92838#928388Answer by delfuego for How do I use TextMate as my command line subversion message editor?delfuego2008-09-18T14:07:05Z2008-09-18T14:07:05Z<p>You need to include a command line option in your SVN_EDITOR (or EDITOR) variable</p>
<p>export SVN_EDITOR='mate -w'</p>
<p>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.</p>
<p>See <a href="http://manual.macromates.com/en/using_textmate_from_terminal.html" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/92826/how-do-i-use-textmate-as-my-command-line-subversion-message-editor/92850#928500Answer by for How do I use TextMate as my command line subversion message editor?2008-09-18T14:08:19Z2008-09-18T14:08:19Z<p>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.</p>
<p><a href="http://manual.macromates.com/en/using_textmate_from_terminal.html" rel="nofollow">http://manual.macromates.com/en/using_textmate_from_terminal.html</a></p>