Skip to content

Instantly share code, notes, and snippets.

@Nyoho
Created August 27, 2012 06:36
Show Gist options
  • Save Nyoho/3486275 to your computer and use it in GitHub Desktop.
Save Nyoho/3486275 to your computer and use it in GitHub Desktop.
Safari で開いているページのタイトルとURLを org-mode 形式でさくっとコピー
-- Generate a link text in org-mode style and copy it to clipboard
tell application "Safari"
set theTitle to do JavaScript "document.title" in front document
set theURL to URL of front document
end tell
set the clipboard to "[[" & theURL & "][" & theTitle & "]]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment