Last week I posted about a little tool I made to allow editing of SQL data within textmate.
I've turned this program into a bundle, which you can download here: http://vivified.net/files/downloads/SQLEdit-bundle-09.zip See the help command for more information.
It seems to require Ruby 1.8.4, why this is I'm not sure yet. I'm very much a ruby newbie. Also, I can't seem to get rid of the HTML output window as I need the edit process to be run in a separate window from the main textmate window (otherwise it freezes and I can't load anything into it). Is there a way to spawn a new background process, and then end my initial textmate command process?
Anyway, I'd love to hear if anyone finds this useful. I myself use it to edit my Textpattern site's templates, as they are all stored inside the database.
Cheers, Bastiaan
On 29/4/2006, at 15:17, Bastiaan Terhorst wrote:
[...] Is there a way to spawn a new background process, and then end my initial textmate command process?
Yes, the & does that, but you also need &>/dev/null (before it) to detach from standard out/error.