refactor(lsp): change capability name to snake case

This commit is contained in:
Yi Ming
2025-07-21 13:02:19 +08:00
parent 7c3e579a90
commit a37e101dc7
3 changed files with 5 additions and 6 deletions

View File

@@ -41,7 +41,7 @@ local M = {}
---@field debounce integer milliseconds to debounce requests for new tokens
---@field timer table uv_timer for debouncing requests for new tokens
---@field client_state table<integer, STClientState>
local STHighlighter = { name = 'Semantic Tokens', active = {} }
local STHighlighter = { name = 'semantic_tokens', active = {} }
STHighlighter.__index = STHighlighter
setmetatable(STHighlighter, Capability)