diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-11-03 11:24:19 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-11-03 11:24:19 +0800 |
commit | f1ced65b41bd764c9656a9523ddfd3d43aa2cfb1 (patch) | |
tree | 75d03477d30b4c6f9f0376aaa3ce265ec3a4a96e /test/completion/common.lua | |
parent | addc4a466252547b163ab37efd1344bfe0b48b9c (diff) | |
download | lua-language-server-f1ced65b41bd764c9656a9523ddfd3d43aa2cfb1.zip |
fix #780
Diffstat (limited to 'test/completion/common.lua')
-rw-r--r-- | test/completion/common.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/completion/common.lua b/test/completion/common.lua index 4cfd1872..73c6d7e6 100644 --- a/test/completion/common.lua +++ b/test/completion/common.lua @@ -2680,3 +2680,13 @@ end kind = define.CompletionItemKind.Variable, } } + +TEST [[ +utf<??>'xxx' +]] +{ + [1] = { + label = 'utf8', + kind = define.CompletionItemKind.Field, + } +} |