在 Ubuntu 的所有应用程序中自动更正

在 Ubuntu 的所有应用程序中自动更正

Windows 8.1 有一个很棒的功能,可以在所有应用程序中自动更正输入错误的单词。是否可以在 Ubuntu 中实现该功能?

答案1

Ubuntu 使用一个名为的软件包aspell来指示输入错误,但它不提供自动更正功能。

man aspell

aspell 是一个连接到 Aspell 库的实用程序,因此它可以作为 ispell 的替代品、独立的拼写检查器、测试 Aspell 库功能的测试实用程序以及管理库使用的词典的实用程序。

   The Aspell library contains an interface allowing other programs direct
   access  to  its  functions  and  therefore reducing the complex task of
   spell checking to simple library calls.  The default library  does  not
   contain  dictionary  word  lists.  To add language dictionaries

但你必须注意一些应用程序正在使用 aspell 通用词典,例如 Evolution、Abiword......而其他一些应用程序则使用自己的词典,例如 LibreOffice,它使用libreoffice-l10n-[language code]language-support-writing-[language code]包。

安装语言词典

sudo apt-get install aspell-[lan code]

例如安装西班牙语词典

sudo apt-get install aspell-es

相关内容