OS X:禁止/准许输入拼写检查(Spell Check While Typing)

字体大小: 中小 标准 ->行高大小: 标准

下面的脚本针对某一个程序禁止输入拼写检查(Spell Check While Typing),只要给program付正确的值

    program=“com.apple.TextEdit”  
  1. defaults write "$program"  CheckSpellingWhileTyping -bool false

下面的语句适合于一个用户的所有软件:

defaults write -g NSAllowContinuousSpellChecking -bool false

只要把False改成True,就可以强制进行输入拼写检查(Spell Check While Typing)。

 

此文章由 http://www.ositren.com 收集整理 ,地址为: http://www.ositren.com/htmls/66224.html