在Emacs中,如何指示Flyspell允许某些重复的单词?

在Emacs中,如何指示Flyspell允许某些重复的单词?,emacs,flyspell,Emacs,Flyspell,在Emacs中,我使用Flyspell检查拼写。默认情况下,Flyspell高亮显示重复的单词 但某些单词是故意重复的,例如“哈哈”。我如何指示Flyspell允许某些单词重复 flyspell-mark-duplications-exceptions is a variable defined in `flyspell.el'. Its value is ((nil "that" "had") ("\\`francais" "nous" "vous")) Documentation: A l

在Emacs中,我使用Flyspell检查拼写。默认情况下,Flyspell高亮显示重复的单词

但某些单词是故意重复的,例如“哈哈”。我如何指示Flyspell允许某些单词重复

flyspell-mark-duplications-exceptions is a variable defined in `flyspell.el'.
Its value is ((nil "that" "had") ("\\`francais" "nous" "vous"))

Documentation:
A list of exceptions for duplicated words.
It should be a list of (LANGUAGE . EXCEPTION-LIST).

LANGUAGE is nil, which means the exceptions apply regardless of
the current dictionary, or a regular expression matching the
dictionary name (`ispell-local-dictionary' or
`ispell-dictionary') for which the exceptions should apply.

EXCEPTION-LIST is a list of strings.  The checked word is
downcased before comparing with these exceptions.

You can customize this variable.

This variable was introduced, or its default value was changed, in
version 24.1 of Emacs.