diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2023-04-04 14:06:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-04 14:06:58 -0600 |
commit | b479e3a95d9ce6557c3fc349e08701ea5b702777 (patch) | |
tree | 98b7d9b87700ac1781c972f80ec901e2fc20f7f6 | |
parent | 743860de40502227b3f0ed64317eb937d24d4a36 (diff) | |
download | rneovim-b479e3a95d9ce6557c3fc349e08701ea5b702777.tar.gz rneovim-b479e3a95d9ce6557c3fc349e08701ea5b702777.tar.bz2 rneovim-b479e3a95d9ce6557c3fc349e08701ea5b702777.zip |
feat(lsp): create default link from @lsp.type.comment to Comment (#22888)
-rw-r--r-- | src/nvim/highlight_group.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/highlight_group.c b/src/nvim/highlight_group.c index cce124de77..a954c14924 100644 --- a/src/nvim/highlight_group.c +++ b/src/nvim/highlight_group.c @@ -278,6 +278,7 @@ static const char *highlight_init_both[] = { // LSP semantic tokens "default link @lsp.type.class Structure", + "default link @lsp.type.comment Comment", "default link @lsp.type.decorator Function", "default link @lsp.type.enum Structure", "default link @lsp.type.enumMember Constant", |