给Finder添加新建文本文档的功能

第一步,打开automator,新建service。
接着如图

给Finder添加新建文本文档的功能_第1张图片
Paste_Image.png
on run {input, parameters}
    tell application "Finder"
        set selection to make new file at (get insertion location)
    end tell
end run

使用时打开finder

给Finder添加新建文本文档的功能_第2张图片
Paste_Image.png

你可能感兴趣的:(给Finder添加新建文本文档的功能)