【Applescript以使用特定编辑器在finder中打开选定的文件】莫问天涯路几重,轻衫侧帽且从容。这篇文章主要讲述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
推荐阅读
- Favicon和Apple Touch图标
- 使用Xamarin构建跨平台应用程序(Android开发人员的视角)
- Android DDMS(终极Android控制台指南)
- 如何实现像素完美的iOS UI设计
- iOS集中和解耦的网络(一个单例类的AFNetworking教程)
- 开发人员命令行工具
- Fastlane(巡航控制上的iOS自动化)
- Apache Cordova教程(使用Cordova开发移动应用程序)
- 深入研究React Native以进行Android开发