diff options
| author | Caleb Marshall <caleb@mrshl.net> | 2024-03-09 14:23:25 -0600 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2024-03-16 20:37:56 +0800 |
| commit | 542c910a1d3ffd29b59278b740abd7487315cb47 (patch) | |
| tree | ca1cf6062652d30485797352aac7e364c65f5e2c /runtime | |
| parent | ee89ba1d7531b184d5abc6b311db258da26bae42 (diff) | |
| download | rneovim-542c910a1d3ffd29b59278b740abd7487315cb47.tar.gz rneovim-542c910a1d3ffd29b59278b740abd7487315cb47.tar.bz2 rneovim-542c910a1d3ffd29b59278b740abd7487315cb47.zip | |
fix(lsp): add missing LSP semantic token highlight links
Added the following LSP semantic token types to be linked to highlight
groups by default:
* @lsp.type.event
* @lsp.type.keyword
* @lsp.type.modifier
* @lsp.type.number
* @lsp.type.operator
* @lsp.type.regexp
* @lsp.type.string
Diffstat (limited to 'runtime')
| -rw-r--r-- | runtime/doc/lsp.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index cecf7c8d38..5488226f78 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -460,13 +460,20 @@ The following groups are linked by default to standard |group-name|s: @lsp.type.decorator Function @lsp.type.enum Structure @lsp.type.enumMember Constant +@lsp.type.event Type @lsp.type.function Function @lsp.type.interface Structure +@lsp.type.keyword Keyword @lsp.type.macro Macro @lsp.type.method Function +@lsp.type.modifier Type @lsp.type.namespace Structure +@lsp.type.number Number +@lsp.type.operator Operator @lsp.type.parameter Identifier @lsp.type.property Identifier +@lsp.type.regexp SpecialChar +@lsp.type.string String @lsp.type.struct Structure @lsp.type.type Type @lsp.type.typeParameter TypeDef |