Answers:
Esc 通常会将焦点移回编辑器。
Jump to Source
在项目视图的选定资源中按F4(动作)将打开具有焦点的编辑器。
这绝对是一种解决方法,但是在Mac OS上,以下击键有效,
[ SHIFT + CMD + A ] > type "edit" > [ ENTER ]
因此,我使用Automator如下创建了服务,
然后,我通过“系统偏好设置>键盘>快捷方式>服务”将服务映射到
[ CTRL + OPTION + CMD + i ]
Automator服务包含以下AppleScript,
on run {input, parameters}
tell application "System Events"
keystroke "A" using {shift down, command down}
delay 0.2
keystroke "edit"
delay 0.2
keystroke return
end tell
return input
end run