Answers:
您可以在“系统偏好设置”中指定切换语音的自定义快捷键:
使用VoiceOver可能有更好的方法来做到这一点,但这会在添加时说出线条。
set spoken to ""
repeat
tell application "Terminal"
set c to contents of window 1
end tell
repeat while c ends with linefeed
set c to text 1 thru -2 of c
end repeat
set tospeak to c
if tospeak starts with spoken then
set tospeak to text (count spoken) thru -1 of tospeak
end if
say tospeak
set spoken to c
delay 1
end repeat
text 1 thru -2
只删除最后一个字符。
fn fn
在终端为我开始听写所以它“应该”工作。你确定它在你想要在终端中使用的那一刻一直在工作吗?