如何在macOS Finder中为重命名[x]项目创建自定义键盘快捷键?

时间:2017-12-12 19:51:58

标签: macos keyboard-shortcuts

使用标准程序(通过系统偏好设置...>键盘)的问题是它需要完全命令名称...

非常感谢您的回答。

- kenNash

1 个答案:

答案 0 :(得分:0)

我不知道可以在那里使用的任何通配符,可能没有 但是有一个愚蠢的解决方法:

enter image description here

修改

此外,这可以在 Automator 中轻松完成 像这样创建新的Automator文档:

enter image description here

以下是代码:

on run {input, parameters}
    tell application "System Events" to tell process "Finder"
        tell menu 1 of menu bar item 3 of menu bar 1
            click (menu item 1 where name starts with "Rename")
        end tell
    end tell
    return input
end run

必须将其保存到~/Library/Services/目录。 然后设置服务的键盘快捷键: enter image description here

您还需要为finder提供辅助功能:

enter image description here