TextMate: Preview in Firefox without having to save document first? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T07:59:07Z http://stackoverflow.com/feeds/question/723615 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/723615/textmate-preview-in-firefox-without-having-to-save-document-first 2 TextMate: Preview in Firefox without having to save document first? CED-214 2009-04-06T23:17:05Z 2009-05-03T15:50:15Z <p>Using TextMate:</p> <p>Is it possible to assign a shortcut to preview/refresh the currently edited HTML document in, say, Firefox, without having to first hit Save?</p> <p>I'm looking for the same functionality as TextMate's built-in Web Preview window, but I'd prefer an external browser instead of TextMate's. (Mainly in order to use a JavaScript console such as Firebug for instance).</p> <p>Would it be possible to pipe the currently unsaved document through the shell and then preview in Firefox. And if so, is there anyone having a TextMate command for this, willing to share it?</p> http://stackoverflow.com/questions/723615/textmate-preview-in-firefox-without-having-to-save-document-first/817251#817251 0 Answer by Wolfr for TextMate: Preview in Firefox without having to save document first? Wolfr 2009-05-03T14:50:38Z 2009-05-03T14:50:38Z <p>I don't think this is possible. You can however enable the 'atomic saves' option so every time you alt tab to Firefox your project is saved.</p> <p>If you ever find a solution to have a proper Firefox live preview, let us know.</p> http://stackoverflow.com/questions/723615/textmate-preview-in-firefox-without-having-to-save-document-first/817355#817355 1 Answer by dbr for TextMate: Preview in Firefox without having to save document first? dbr 2009-05-03T15:50:15Z 2009-05-03T15:50:15Z <p>Not trivially. The easiest way would be to write the current file to the temp dir, then launch that file.. but, this would break any relative links (images, scripts, CSS files)</p> <p>Add a bundle:</p> <pre><code>Input: Entire Document Output: Discard Scope Selector: source.html </code></pre> <p>And the script:</p> <pre><code>#!/usr/bin/env python2.5 import os import sys import random import tempfile import subprocess fname = os.environ.get("TM_FILEPATH", "Untitled %s.html" % random.randint(100, 1000)) fcontent = sys.stdin.read() fd, name = tempfile.mkstemp() print name open(name, "w+").write(fcontent) print subprocess.Popen(["open", "-a", "Firefox", name]).communicate() </code></pre> <p>As I said, that wont work with relative resource links, which is probably a big problem.. Another option is to modify the following line of code, from the exiting "Refresh Browsers" command:</p> <pre><code>osascript &lt;&lt;'APPLESCRIPT' tell app "Firefox" to Get URL "JavaScript:window.location.reload();" inside window 1 APPLESCRIPT </code></pre> <p>Instead of having the javascript reload the page, it could clear it, and write the current document using a series of <code>document.write()</code> calls. The problem with this is you can't guarantee the current document is the one you want to replace.. Windows 1 could have changed to another site etc, especially with tabbed browsing..</p> <p>Finally, an option that doesn't have a huge drawback: Use version control, particularly one of the "distributed" ones, where you don't have to send your changes to a remote server - git, mercurial, darcs, bazaar etc (all have TextMate integration also)</p> <p>If your code is in version control, it doesn't matter if you save before previewing, you can also always go back to your last-commited version if you break something and lose the undo buffer.</p>