Created
August 27, 2012 06:36
-
-
Save Nyoho/3486275 to your computer and use it in GitHub Desktop.
Safari で開いているページのタイトルとURLを org-mode 形式でさくっとコピー
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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