diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-27 06:32:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-27 06:32:41 +0800 |
commit | d5e08837128530f05b2fc8900e826f767e4961ee (patch) | |
tree | b32ca8de44a1e8fd4507d3b5402e055b1eadbb96 /src/nvim/fileio.h | |
parent | b0e052a8b30ce84221c3f992e111713451633b36 (diff) | |
parent | d813ef0097eb781baeba5d458dcb0507e2f61040 (diff) | |
download | rneovim-d5e08837128530f05b2fc8900e826f767e4961ee.tar.gz rneovim-d5e08837128530f05b2fc8900e826f767e4961ee.tar.bz2 rneovim-d5e08837128530f05b2fc8900e826f767e4961ee.zip |
Merge pull request #19955 from zeertzjq/vim-9.0.0272
vim-patch:9.0.{0272,0274,0275,0276}: buffer loading fixes
Diffstat (limited to 'src/nvim/fileio.h')
-rw-r--r-- | src/nvim/fileio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/fileio.h b/src/nvim/fileio.h index 650977deac..ae3c51f1bc 100644 --- a/src/nvim/fileio.h +++ b/src/nvim/fileio.h @@ -15,6 +15,7 @@ #define READ_KEEP_UNDO 0x20 // keep undo info #define READ_FIFO 0x40 // read from fifo or socket #define READ_NOWINENTER 0x80 // do not trigger BufWinEnter +#define READ_NOFILE 0x100 // do not read a file, do trigger BufReadCmd #define READ_STRING(x, y) (char_u *)read_string((x), (size_t)(y)) |