diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-01-07 18:00:50 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-01-07 18:00:50 +0800 |
commit | 4f04a448ac995854274737d39f5b96771116a5a0 (patch) | |
tree | 460b06d8a5f6d75b46b6686ff3bd29add48dc876 /script | |
parent | 66efb393005836da8d94b2aeef9ab7204915b493 (diff) | |
download | lua-language-server-4f04a448ac995854274737d39f5b96771116a5a0.zip |
update
Diffstat (limited to 'script')
-rw-r--r-- | script/core/semantic-tokens.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/core/semantic-tokens.lua b/script/core/semantic-tokens.lua index da3396ce..2a77f17f 100644 --- a/script/core/semantic-tokens.lua +++ b/script/core/semantic-tokens.lua @@ -132,7 +132,7 @@ local Care = util.switch() start = source.start, finish = source.finish, type = define.TokenTypes.variable, - modifieres = define.TokenModifiers.abstract, + modifieres = define.TokenModifiers.definition, } return end @@ -292,7 +292,7 @@ local Care = util.switch() results[#results+1] = { start = source.start, finish = source.finish, - type = define.TokenTypes.variable, + type = define.TokenTypes.keyword, modifieres = define.TokenModifiers.readonly, } end) |