spell.c: give priority to rare words. #2456

See:
  https://groups.google.com/forum/#!topic/vim_dev/rPWOoR3ZgSA
This commit is contained in:
Jakson Alves de Aquino
2015-04-18 20:24:55 -05:00
committed by Justin M. Keyes
parent dd8531dbb5
commit f8151735a3
2 changed files with 3 additions and 4 deletions

View File

@@ -1181,8 +1181,7 @@ rare words. Example:
Rare words are highlighted differently from bad words. This is to be used for Rare words are highlighted differently from bad words. This is to be used for
words that are correct for the language, but are hardly ever used and could be words that are correct for the language, but are hardly ever used and could be
a typing mistake anyway. When the same word is found as good it won't be a typing mistake anyway.
highlighted as rare.
This flag can also be used on an affix, so that a basic word is not rare but This flag can also be used on an affix, so that a basic word is not rare but
the basic word plus affix is rare |spell-affix-flags|. However, if the word the basic word plus affix is rare |spell-affix-flags|. However, if the word

View File

@@ -572,8 +572,8 @@ typedef struct langp_S {
// Result values. Lower number is accepted over higher one. // Result values. Lower number is accepted over higher one.
#define SP_BANNED -1 #define SP_BANNED -1
#define SP_OK 0 #define SP_RARE 0
#define SP_RARE 1 #define SP_OK 1
#define SP_LOCAL 2 #define SP_LOCAL 2
#define SP_BAD 3 #define SP_BAD 3