1
0
forked from aniani/vim

patch 9.0.0138: not enough characters accepted for 'spellfile'

Problem:    Not enough characters accepted for 'spellfile'.
Solution:   Add vim_is_fname_char() and use it for 'spellfile'.
This commit is contained in:
Bram Moolenaar
2022-08-04 13:01:48 +01:00
parent db7a88db8b
commit bc49c5f48f
5 changed files with 27 additions and 3 deletions

View File

@@ -25,6 +25,7 @@ int vim_iswordc_buf(int c, buf_T *buf);
int vim_iswordp(char_u *p);
int vim_iswordp_buf(char_u *p, buf_T *buf);
int vim_isfilec(int c);
int vim_is_fname_char(int c);
int vim_isfilec_or_wc(int c);
int vim_isprintc(int c);
int vim_isprintc_strict(int c);