diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-01-04 16:07:26 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-01-04 16:07:26 +0800 |
commit | db575065af7c0fab76f6d3d7964ae84244757c91 (patch) | |
tree | 0ea2d4bd275b4ea6396f845c56acbee700cf52bd /script/core | |
parent | 2d37173ea1b669867d89faae61e6e3bb63d72692 (diff) | |
download | lua-language-server-db575065af7c0fab76f6d3d7964ae84244757c91.zip |
fix #885
Diffstat (limited to 'script/core')
-rw-r--r-- | script/core/highlight.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/core/highlight.lua b/script/core/highlight.lua index 02f3c07f..bbfd1504 100644 --- a/script/core/highlight.lua +++ b/script/core/highlight.lua @@ -348,7 +348,7 @@ return function (uri, offset) results[#results+1] = { start = start, finish = finish, - kind = define.DocumentHighlightKind.Write + kind = define.DocumentHighlightKind.Text } end) |