How do I use TextMate as my command line subversion message editor? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T18:59:33Z http://stackoverflow.com/feeds/question/92826 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/92826/how-do-i-use-textmate-as-my-command-line-subversion-message-editor 2 How do I use TextMate as my command line subversion message editor? Seth Weiner 2008-09-18T14:05:00Z 2008-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#92838 8 Answer by delfuego for How do I use TextMate as my command line subversion message editor? delfuego 2008-09-18T14:07:05Z 2008-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#92850 0 Answer by for How do I use TextMate as my command line subversion message editor? 2008-09-18T14:08:19Z 2008-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>