Skip to content

Instantly share code, notes, and snippets.

@jcsackett
Forked from dpk/gist:646570
Created October 26, 2010 16:44
Show Gist options
  • Save jcsackett/647265 to your computer and use it in GitHub Desktop.
Save jcsackett/647265 to your computer and use it in GitHub Desktop.
-- based on John Gruber's original Safari Source in BBEdit script
-- http://daringfireball.net/2003/01/safari_source_in_bbedit
-- and duct tape
tell application "Safari" to set theSource to do JavaScript "window.document.documentElement.outerHTML" in document 1
tell application "MacVim"
activate
make new text window with properties ¬
{contents:theSource, source language:"HTML"}
-- fix the \n that Safari sent over
replace "\\n" using "\\r" searching in text 1 of text window 1 ¬
options {search mode:grep, starting at top:true}
select insertion point before character 1 of text window 1
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment