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.
  1. tell application "Finder"
  2. activate
  3. set filePath to (POSIX path of (target of front window as alias))
  4. set fileAlias to the selection as alias
  5. set fileName to name of fileAlias
  6. do shell script "~/bin/subl " & filePath & fileName
  7. end tell

以上是关于Applescript以使用特定编辑器在finder中打开选定的文件的主要内容,如果未能解决你的问题,请参考以下文章

Applescript Tell 特定用户启动的应用程序

Applescript 显示 Apple 菜单栏项目

使用 Applescript 在 iTunes 中搜索和删除特定曲目

如何在 AppleScript 脚本编辑器的结果窗格中记录/回显字符串?

使用 shell 脚本或 AppleScript 将子文件夹中特定文件类型的所有文件压缩到每个子文件夹一个文件中

使用 find 以非递归方式搜索目录中的特定文件。艾克斯