diff options
author | Lewis Russell <me@lewisr.dev> | 2022-09-06 11:23:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-06 11:23:01 +0100 |
commit | 84d1094958fdbdda67f629197924d4146e2a1887 (patch) | |
tree | 98e20f97a5c5ce818ade4f330bca45ca1d4d26bf /src/nvim/buffer_defs.h | |
parent | 05893aea391d91e159a41f03acc20049c7049510 (diff) | |
parent | 75adfefc85bcf0d62d2c0f51a951e6003b595cea (diff) | |
download | rneovim-84d1094958fdbdda67f629197924d4146e2a1887.tar.gz rneovim-84d1094958fdbdda67f629197924d4146e2a1887.tar.bz2 rneovim-84d1094958fdbdda67f629197924d4146e2a1887.zip |
Merge pull request #19419 from vigoux/extmark_spell
Co-authored-by: Lewis Russell <lewis6991@gmail.com>
Co-authored-by: Björn Linse <bjorn.linse@gmail.com>
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index c26b18a7e7..a520f3c0e7 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -462,6 +462,9 @@ typedef struct { char *b_p_spf; // 'spellfile' char *b_p_spl; // 'spelllang' char *b_p_spo; // 'spelloptions' +#define SPO_CAMEL 0x1 +#define SPO_NPBUFFER 0x2 + unsigned b_p_spo_flags; // 'spelloptions' flags int b_cjk; // all CJK letters as OK uint8_t b_syn_chartab[32]; // syntax iskeyword option char *b_syn_isk; // iskeyword option |