diff options
author | Chinmay Dalal <dalal.chinmay.0101@gmail.com> | 2023-06-21 13:03:56 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-21 00:33:56 -0700 |
commit | 1b679ac192877ae21e531d2eaa88ef0918f1dfe1 (patch) | |
tree | 2942fd5a351eab9f98999399456c42dfb77200ea /src | |
parent | 3bf887f6e08fa272679187340ca483809275b20a (diff) | |
download | rneovim-1b679ac192877ae21e531d2eaa88ef0918f1dfe1.tar.gz rneovim-1b679ac192877ae21e531d2eaa88ef0918f1dfe1.tar.bz2 rneovim-1b679ac192877ae21e531d2eaa88ef0918f1dfe1.zip |
fix(lsp): define LspInlayHint highlight group #24073
fixes #24068
Co-authored-by: Justin M. Keyes <justinkz@gmail.com>
Diffstat (limited to 'src')
-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 48e4479c58..da43f678bc 100644 --- a/src/nvim/highlight_group.c +++ b/src/nvim/highlight_group.c @@ -231,6 +231,7 @@ static const char *highlight_init_both[] = { "default link DiagnosticSignOk DiagnosticOk", "default DiagnosticDeprecated cterm=strikethrough gui=strikethrough guisp=Red", "default link DiagnosticUnnecessary Comment", + "default link LspInlayHint NonText", // Text "default link @text.literal Comment", |