vim-patch:9.2.1001: complete_info() does not report the item highlight groups (#41461)

Problem:  complete_info() omits "abbr_hlgroup" and "kind_hlgroup".
Solution: Keep the highlight group ID with the match instead of the
          resolved attribute and add both entries to the returned items
          (glepnir).

closes: vim/vim#21105

1c32cede0a
This commit is contained in:
glepnir
2026-08-24 14:35:25 +08:00
committed by GitHub
parent 70958dae75
commit 92d5531f96
7 changed files with 108 additions and 54 deletions

View File

@@ -1139,10 +1139,13 @@ function vim.fn.complete_check() end
--- the currently selected index item.
--- items List of all completion candidates. Each item
--- is a dictionary containing the entries "word",
--- "abbr", "menu", "kind", "info" and
--- "user_data". "equal", "preselect" and
--- "commit_chars" are included only for items that
--- set them.
--- "abbr", "menu", "kind", "info",
--- "abbr_hlgroup", "kind_hlgroup" and
--- "user_data". The highlight group entries hold
--- the name that the item was added with,
--- or an empty string.
--- "equal", "preselect" and "commit_chars" are
--- included only for items that set them.
--- See |complete-items|.
--- matches Same as "items", but only returns items that
--- are matching current query. If both "matches"