diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-10-17 15:10:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-17 15:10:15 -0400 |
commit | b5cd052037c532e5416919e4077b721ce6ab3a38 (patch) | |
tree | 54fb8384808b80ed9ec095414fa61b2f3c6cee18 /src/nvim/buffer_defs.h | |
parent | c8ce098e7109f6d62ea0de59d610fcb6132ad221 (diff) | |
parent | 242af4dc991f12474eb281eb64236922b423cdbe (diff) | |
download | rneovim-b5cd052037c532e5416919e4077b721ce6ab3a38.tar.gz rneovim-b5cd052037c532e5416919e4077b721ce6ab3a38.tar.bz2 rneovim-b5cd052037c532e5416919e4077b721ce6ab3a38.zip |
Merge pull request #13106 from janlazo/vim-8.2.1856
vim-patch:8.1.1795,8.2.1856
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 5e5a20e8f2..1223f2bdab 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -91,6 +91,7 @@ typedef struct { #define BF_READERR 0x40 // got errors while reading the file #define BF_DUMMY 0x80 // dummy buffer, only used internally #define BF_PRESERVED 0x100 // ":preserve" was used +#define BF_SYN_SET 0x200 // 'syntax' option was set // Mask to check for flags that prevent normal writing #define BF_WRITE_MASK (BF_NOTEDITED + BF_NEW + BF_READERR) |