如何添加命令操作“打开方式...”在 OS X 上
在 Finder 中,使用鼠标右键单击菜单中的“打开方式”,我想使用命令 xterm -e vim
打开文本文件。
谁能告诉我该怎么做?
In Finder, using the 'Open With' in mouse right click menu, I want to open a text file using the command xterm -e vim
.
Could anyone tell me how to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个新的 Cocoa 应用程序项目。
:
通过将键
LSBackgroundOnly
添加到您的 plist 文件并将其值设置为 YES,将您的应用配置为仅后台应用程序:注册为能够打开文本文件将其添加到您的 plist 中:
打开 MainMenu.xib,然后取消选中窗口的“启动时可见”选项。
你完成了。建造。您可能需要使用 Finder 将其打开一次,以使启动服务能够识别它。
然后,在 Finder 中,您可以右键单击文本文件,然后在“打开方式...”菜单中选择您的应用程序,如屏幕截图所示:
Create an new Cocoa Application project.
.
Configure your app as a background only application by adding the key
LSBackgroundOnly
to your plist file and set its value to YES:Register as being able to open text file by adding this to your plist:
Open your MainMenu.xib, and uncheck the option "Visible at Launch" of your window.
You are done. Build. You might need to open it once with Finder to make Launch Services aware of it.
Then, in the Finder, you can right-click on a text file, and in the "Open With..." menu, select your app, like in the screenshot: