diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-07-08 00:28:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-07 15:28:44 -0700 |
commit | 4547137aaff32b20172870a549d3a28a3c7adf1c (patch) | |
tree | 0f40a62b3741c57a6f5759dc25f8932a26922908 /src/nvim/option_defs.h | |
parent | e2bc7e321b4a8bec3727cf342a84eb1e85dadbc8 (diff) | |
download | rneovim-4547137aaff32b20172870a549d3a28a3c7adf1c.tar.gz rneovim-4547137aaff32b20172870a549d3a28a3c7adf1c.tar.bz2 rneovim-4547137aaff32b20172870a549d3a28a3c7adf1c.zip |
chore: use codespell to spell check #15016
Diffstat (limited to 'src/nvim/option_defs.h')
-rw-r--r-- | src/nvim/option_defs.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/option_defs.h b/src/nvim/option_defs.h index beb62a6a0b..0a556390e7 100644 --- a/src/nvim/option_defs.h +++ b/src/nvim/option_defs.h @@ -740,11 +740,11 @@ EXTERN long p_wd; // 'writedelay' EXTERN int p_force_on; ///< options that cannot be turned off. EXTERN int p_force_off; ///< options that cannot be turned on. -/* - * "indir" values for buffer-local opions. - * These need to be defined globally, so that the BV_COUNT can be used with - * b_p_scriptID[]. - */ +// +// "indir" values for buffer-local options. +// These need to be defined globally, so that the BV_COUNT can be used with +// b_p_scriptID[]. +// enum { BV_AI = 0 , BV_AR |