feat: icon_fetcher adds symbol parameter

This commit is contained in:
eph
2024-12-27 11:25:43 +08:00
parent ffde729b63
commit a3717e7a4e
2 changed files with 4 additions and 3 deletions

View File

@@ -37,7 +37,7 @@ local function parse_result(result, depth, hierarchy, parent, bufnr)
local node = {
deprecated = value.deprecated,
kind = value.kind,
icon = symbols.icon_from_kind(value.kind, bufnr),
icon = symbols.icon_from_kind(value.kind, bufnr, value),
name = value.name or value.text,
detail = value.detail,
line = selectionRange.start.line,