aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/fileio.h
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-08-27 06:32:41 +0800
committerGitHub <noreply@github.com>2022-08-27 06:32:41 +0800
commitd5e08837128530f05b2fc8900e826f767e4961ee (patch)
treeb32ca8de44a1e8fd4507d3b5402e055b1eadbb96 /src/nvim/fileio.h
parentb0e052a8b30ce84221c3f992e111713451633b36 (diff)
parentd813ef0097eb781baeba5d458dcb0507e2f61040 (diff)
downloadrneovim-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.h1
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))