Skip to content

Instantly share code, notes, and snippets.

@davidfmiller
Last active January 25, 2017 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidfmiller/027e90e46a701d0e48445c6166d1c134 to your computer and use it in GitHub Desktop.
Save davidfmiller/027e90e46a701d0e48445c6166d1c134 to your computer and use it in GitHub Desktop.
Send current BBEdit document to LaunchBar
try
tell application "BBEdit"
set mydoc to (URL of document 1 of window 1) as POSIX file
end tell
tell application "LaunchBar"
open mydoc
end tell
on error
beep
end try
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment