Answers:
从“系统偏好设置”中为“缩放”菜单项(或在您的语言环境中调用的任何项)分配快捷方式:
如果您希望快捷方式始终最大化窗口以填充屏幕,则可以使用例如Spectacle:
或者这样添加一行~/.slate
与板岩:
bind m:cmd;shift move screenOriginX;screenOriginY screenSizeX;screenSizeY
我已使用FastScripts为该脚本分配快捷方式:
try
tell application "Finder" to set b to bounds of window of desktop
try
tell application (path to frontmost application as text)
set bounds of window 1 to {item 1 of b, 22, item 3 of b, item 4 of b}
end tell
on error
tell application "System Events" to tell window 1 of (process 1 where it is frontmost)
try
set position to {0, 22}
set size to {item 3 of b, (item 4 of b) - 22}
on error
click (button 1 of window 1 where subrole is "AXZoomButton")
end try
end tell
end try
end try
当您通过辅助功能API告诉System Events更改位置和大小时,在更改位置和大小之间会有明显的延迟。告诉应用程序更改窗口的边界速度更快,但并非适用于所有应用程序。Slate和Moom等其他应用程序始终使用可访问性API。
抱歉,我在最小化窗口方面犯了一个错误。苹果已经准备好了。所以,我修改了。
回答:
要最大化活动窗口(应用程序),必须按如下所示将操作分配给快捷键;
推荐依据:
我建议您使用下面的快捷键,而不要使用默认的最小化快捷键。
最小化活动窗口(应用程序):
Command + H:隐藏活动窗口(应用程序)
可以在快捷键上方最小化活动窗口,但实际上它隐藏了活动窗口(应用程序)。并且,如果使用此快捷键,则可以通过快捷键“ Command + Tab”快速切换隐藏窗口。如果通过Command + M最小化活动窗口,则无法通过Command + Tab快速切换应用程序,而必须从Dock中单击该应用程序。)
您可以在下面参考相关信息。
http://support.apple.com/kb/HT1343, http://support.apple.com/kb/PH13911
Command+H
太棒了,请节省一天:)
Command+H
真是太棒了。非常感谢您的小费!