Applescript以使用特定编辑器在finder中打开选定的文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Applescript以使用特定编辑器在finder中打开选定的文件相关的知识,希望对你有一定的参考价值。
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.
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
以上是关于Applescript以使用特定编辑器在finder中打开选定的文件的主要内容,如果未能解决你的问题,请参考以下文章
使用 Applescript 在 iTunes 中搜索和删除特定曲目
如何在 AppleScript 脚本编辑器的结果窗格中记录/回显字符串?