/ Published in: AppleScript
This Applescript take the selected file in Finder and open it with Sublime Text 2 (~/bin/subl). Using Alfred you can bind a global hotkey for this script, so you can edit your files with just a keypress, without worrying about the default editor.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
tell application "Finder" activate set filePath to (POSIX path of (target of front window as alias)) set fileAlias to the selection as alias set fileName to name of fileAlias do shell script "~/bin/subl " & filePath & fileName end tell