问题标签 [ispell]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
4191 浏览

dictionary - where can I download the ispell *.dict and *.affix files?

I am quite new to postgresql full text search and I am setting up the configuration as where can I download the ispell *.dict and *.affix filefollowing (exactly as in docs):

So, this I think expects files english.dict and english.affix on for example:

But these files are not there. I just have ispell_sample.dict and ispell_sample.affix - which when included above work fine - no problem.

So... I followed this post and downloaded the required dictionary from the open office people and renamed the .dic to .dict and .aff to .affix. Then I have checked (using file -bi dict.affix and file -bi english.dict and they are UTF8 encoded).

When I run the above text search dictionary, I get the error:

I was wondering if anyone had clues on how to solve this problem or if anyone had encountered this before.. Thanks./.

UPDATE:1: I guess the question can be rephrased as follows: where can I download the ispell *.dict and *.affix file for postgres

0 投票
1 回答
154 浏览

emacs - emacs __approximate__ 拼写检查器

我需要一个近似的拼写检查器,因为我经常用法语写作,没有法语键盘。

我写法语的一种方法是使用C-x 8 ' e组合,但多次使用它太累了。

另一种方法是把单词写错,然后按ispell-word,让它更正它。例如,'j'ai marchee',为了写成“j'ai marché”。我必须按这个组合,因为如果我写“j'ai marche”,拼写检查器不会发现语义错误。它只检查语法。

我想问一下 Emacs 中是否存在拼写检查器,我可以在其中按“j'ai marche”,它会找到所有近似匹配项,包括“j'ai marché”。多次按“ee”很累(很多时候我找不到可以按照我需要的方式完成为正确形式的近似错误形式)。

或者,我对emacs中使用英式键盘方便地用法语书写的另一种方式感兴趣......

0 投票
1 回答
1129 浏览

macos - Mac 上 Emacs 中的拼写检查

我无法在 Mac 上的 Emacs 中使用拼写检查。我将以前的 Fedora 上的 .emacs 文件复制到我的 Macbook 的主文件夹中。“.emacs”有一行说:

当我在打开的 emacs 终端中键入“control+k”时,我在 minibuffer 中收到以下错误消息:

当我查找这个地址时,我发现“/Applications/Emacs.app/Contents/Resources/”文件夹内没有“list”文件夹。

当我“定位 ispell.elc”时,我得到以下结果:

我如何解决它?

0 投票
1 回答
106 浏览

emacs - 使用 Emacs ispell 将 'i' 替换为 'I'

我使用ispell进行拼写检查,但它不会将单词 'i' 替换为 'I'。

0 投票
1 回答
188 浏览

emacs - emacs ispell 在乳胶引号上打断

我的运行 hunspell 的 emacs“ispell”命令在遇到我的 emacs 乳胶缓冲区(我正在使用 AucTEX)中的引用部分时会中断。在我以前的 emacs/Linux 发行版中,它没有这个问题。例子:

正确运行M-x ispell会标记 vbfs。然而,

不记录任何错误。此外,一旦命中引用的文本部分,似乎会跳过文档的其余部分。什么可能导致这种情况?作为参考,这是我的ispell-tex-skip-alistsvar:

在 buildvm-15.phx2.fedoraproject.org 上运行 2013 年 8 月 14 日的 GNU Emacs 24.3.1(x86_64-redhat-linux-gnu,GTK+ 版本 3.8.2)

0 投票
0 回答
83 浏览

aspell - 包含给定语言的字符串的单词列表

有没有办法使用 ispell 或 aspell 来生成包含给定子字符串的单词列表?例如,我想列出所有包含字符串“th”的英语单词。

请注意,我的问题不仅限于英语。

0 投票
1 回答
1930 浏览

emacs - 我使用的是 ispell 还是 aspell,本地字典保存在哪里?

在 Emacs 中进行拼写检查时,我习惯于使用M-xispell来调用拼写检查器。我读过有些人配置了他们的 Emacs,所以这会调用 aspell 而不是 ispell(或可能是 hunspell)。

我如何判断我是在调用 ispell 还是 aspell?

我查看了我的.emacs文件(在我的主目录中),也没有看到任何引用。

另外,(假设我使用的是 ispell),“私人词典”保存在我插入单词的位置。我想备份该文件(和/或将其传输到另一台机器)。

0 投票
1 回答
484 浏览

emacs - 在 hunspell 个人词典中正确保存的带有德语变音符号的单词未被 emacs ispell 或 flyspell 识别为正确拼写

我使用 emacs (flyspell) 为 hunspell 提供了一个完美的工作设置

作为 ispell-dictionary-alist 的字典定义。

只要主字典“de_DE_frami”包含它们,德语变音就没有问题。但是,一旦我在 hunspell 的个人词典中输入了一个带有德语变音符号的单词,例如“Bestürzenste”,它就不会被认为是正确的,而所有其他不包含德语变音符号的添加词都被认为是正确的。

最重要的是,如果我检查 hunspell 的个人词典,所有单词都以正确的 utf8 编码很好地出现在那里。更重要的是,如果在命令行上使用唯一选项“-d de_DE_frami”执行 hunspell,它确实可以识别带有变音符号的单词,例如“Bestürzenste”被报告为正确的。

所以我猜这个麻烦是由ispell或flyspell引起的。这可能是只涉及个人字典中的查找的错误。有人有什么问题吗?有没有一种解决方法,我无法在网上搜索时间?

感谢您在这里提供帮助!

顺便提一句。我还尝试在上面的 dict 定义中使用编码 iso-8859-1 而不是 ut8 --> 不改变。

0 投票
2 回答
8676 浏览

emacs - 在 Emacs flyspell-mode 中,如何在字典中添加新单词?

在 flyspell 模式下的 Aquamacs 中,当 flyspell 将单词标记为拼写错误时,如果实际上拼写正确,我可以右键单击将单词添加到我的字典中。

在 OSX 上的 GNU Emacs 中,当 flyspell-mode 突出显示它认为拼写错误的单词时,如何将单词添加到字典中?查看文档,我没有看到类似flyspell-learn-wordor的函数ispell-add-word-to-personal-dictionary

0 投票
1 回答
838 浏览

emacs - 如何让 GNU Emacs 拼写检查在 OSX 上找到用户的个人词典?

我从 Aquamacs 切换到 GNU Emacs。以前,当 Aquamacs 认为某个单词拼写错误时,我可以右键单击“学习拼写”。(我还可以选择忽略拼写,让它仅取消标记该缓冲区的单词。)

在 GNU Emacs 中,我将 flyspell-mode 与 ispell 一起使用,并将 aspell 作为字典。但我注意到我之前添加到字典中的单词(例如我的名字)被标记为拼写错误。

如何让 GNU Emacs 查找和使用我已经建立的个人单词列表?例如,我可以在不从源代码构建 Aquamacs 的情况下做到这一点吗?