diff options
author | KunMing Xie <qqzz014@gmail.com> | 2018-03-09 02:49:21 +0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-03-08 19:49:21 +0100 |
commit | 5ec0a6d13f3f1d50b424f46e2e1bbc2813b5086d (patch) | |
tree | b7f3ac667edc33d80786bc67405d4196f7450c1b /src/nvim/syntax.c | |
parent | 1d5eec2c626bd8125940c0425cc6f33213851781 (diff) | |
download | rneovim-5ec0a6d13f3f1d50b424f46e2e1bbc2813b5086d.tar.gz rneovim-5ec0a6d13f3f1d50b424f46e2e1bbc2813b5086d.tar.bz2 rneovim-5ec0a6d13f3f1d50b424f46e2e1bbc2813b5086d.zip |
vim-patch:8.0.0513: fix getting name of cleared highlight group (#8103)
Problem: Getting name of cleared highlight group is wrong. (Matt Wozniski)
Solution: Only skip over cleared names for completion. (closes vim/vim#1592)
Also fix that a cleared group causes duplicate completions.
https://github.com/vim/vim/commit/c96272e30e2b81e5e0c8418f09d9db4e2fcd5d73
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r-- | src/nvim/syntax.c | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index 68f3329ce7..e2476f9b0b 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -7758,20 +7758,26 @@ static void highlight_list_two(int cnt, int attr) } -/* - * Function given to ExpandGeneric() to obtain the list of group names. - * Also used for synIDattr() function. - */ +/// Function given to ExpandGeneric() to obtain the list of group names. const char *get_highlight_name(expand_T *const xp, int idx) FUNC_ATTR_WARN_UNUSED_RESULT { + return get_highlight_name_ext(xp, idx, true); +} + + +/// Obtain a highlight group name. +/// When "skip_cleared" is TRUE don't return a cleared entry. +const char *get_highlight_name_ext(expand_T *xp, int idx, int skip_cleared) + FUNC_ATTR_WARN_UNUSED_RESULT +{ if (idx < 0) { return NULL; } // Items are never removed from the table, skip the ones that were cleared. - while (idx < highlight_ga.ga_len && HL_TABLE()[idx].sg_cleared) { - idx++; + if (skip_cleared && idx < highlight_ga.ga_len && HL_TABLE()[idx].sg_cleared) { + return ""; } if (idx == highlight_ga.ga_len && include_none != 0) { |