答案 0 :(得分:0)
在macOS中,如果在输入文本时按住某个键,则会显示一个弹出窗口,其中包含字符的各种重音形式。
要禁用此功能,您可能需要在终端中运行以下命令:
defaults write -g ApplePressAndHoldEnabled -bool false
您需要注销并登录,以使更改生效。
如果要恢复初始行为,请运行:
defaults write -g ApplePressAndHoldEnabled -bool true
再次,您需要注销并登录。