aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/option.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-12-22 13:32:46 +0800
committerGitHub <noreply@github.com>2023-12-22 13:32:46 +0800
commitba0fa4fa197330687b06c74a50b2ccd4800f5881 (patch)
tree13c4be404f1a3e3480a555d06ff627cb6002c5c4 /src/nvim/option.c
parent089b934352437ab310a6dd3b138c7ed9445a3d7b (diff)
downloadrneovim-ba0fa4fa197330687b06c74a50b2ccd4800f5881.tar.gz
rneovim-ba0fa4fa197330687b06c74a50b2ccd4800f5881.tar.bz2
rneovim-ba0fa4fa197330687b06c74a50b2ccd4800f5881.zip
refactor(IWYU): add "private" pragma to more generated headers (#26706)
"export" only prevents IWYU from adding these headers if the headers that export them are included, while "private" ensures that IWYU never adds these headers.
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r--src/nvim/option.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c
index 49a8c468d6..4969ac7f1d 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -2,7 +2,6 @@
// - Put it in options.lua
// - For a global option: Add a variable for it in option_vars.h.
// - For a buffer or window local option:
-// - Add a BV_XX or WV_XX entry to option_vars.h
// - Add a variable to the window or buffer struct in buffer_defs.h.
// - For a window option, add some code to copy_winopt().
// - For a window string option, add code to check_winopt()