diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-10-01 21:05:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-01 21:05:12 +0800 |
commit | b40c70f2fcaf709d2bf8b3209ae1e2f617d8e852 (patch) | |
tree | 489e52a8c585f8f1fccfdddf814ac763ad2b7522 /src/nvim/ex_getln.c | |
parent | 9b3045103f7d56e5ccd0574dcb93e953b72d5f50 (diff) | |
parent | 01c51a491330bd10202c73aff92c0978984c0692 (diff) | |
download | rneovim-b40c70f2fcaf709d2bf8b3209ae1e2f617d8e852.tar.gz rneovim-b40c70f2fcaf709d2bf8b3209ae1e2f617d8e852.tar.bz2 rneovim-b40c70f2fcaf709d2bf8b3209ae1e2f617d8e852.zip |
Merge pull request #25456 from zeertzjq/vim-9.0.1958
vim-patch:9.0.{1958,1960,1961,1968}: string option completion
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index 6fa607d569..2d1633f312 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -2766,6 +2766,7 @@ int check_opt_wim(void) } for (char *p = p_wim; *p; p++) { + // Note: Keep this in sync with p_wim_values. for (i = 0; ASCII_ISALPHA(p[i]); i++) {} if (p[i] != NUL && p[i] != ',' && p[i] != ':') { return FAIL; |