feat(semantic_tokens): link lsp comments, e.g. conditional C ifdefs that won't evaluate (#334)

This commit is contained in:
Amaan Qureshi
2023-03-14 07:14:31 -04:00
committed by GitHub
parent 27203d7074
commit b233a3cab0

View File

@@ -254,9 +254,10 @@ function M.setup()
["@namespace"] = { link = "Include" },
-- LSP Semantic Token Groups
["@lsp.type.comment"] = { link = "@comment" },
["@lsp.type.enum"] = { link = "@type" },
["@lsp.type.keyword"] = { link = "@keyword" },
["@lsp.type.interface"] = { link = "Identifier" },
["@lsp.type.keyword"] = { link = "@keyword" },
["@lsp.type.namespace"] = { link = "@namespace" },
["@lsp.type.parameter"] = { link = "@parameter" },
["@lsp.type.property"] = { link = "@property" },