Last active
December 31, 2015 02:39
-
-
Save skimbrel/7922014 to your computer and use it in GitHub Desktop.
Revisions
-
skimbrel revised this gist
Dec 12, 2013 . 1 changed file with 5 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,8 @@ on run argv tell application "Alfred 2" search item 1 of argv tell application "System Events" keystroke "l" using {command down} end tell end tell end run -
skimbrel created this gist
Dec 12, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ on run argv set the clipboard to item 1 of argv tell application "System Events" keystroke space using {command down} keystroke "v" using {command down} keystroke "l" using {command down} end tell end run