fix(lsp): revert semantic token gravity change from #21574 (#21763)

This commit is contained in:
jdrouhard 2023-01-12 00:13:52 -06:00 committed by GitHub
parent a37c686d21
commit 143d3f1f32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -408,7 +408,6 @@ function STHighlighter:on_win(topline, botline)
hl_group = '@' .. token.type,
end_col = token.end_col,
priority = vim.highlight.priorities.semantic_tokens,
end_right_gravity = true,
strict = false,
})
@ -419,7 +418,6 @@ function STHighlighter:on_win(topline, botline)
hl_group = '@' .. modifier,
end_col = token.end_col,
priority = vim.highlight.priorities.semantic_tokens + 1,
end_right_gravity = true,
strict = false,
})
end