diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2020-09-08 23:42:52 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2020-09-08 23:42:52 +0800 |
commit | 9a050f2aa27dc026d0121b80084fb68093c37ac8 (patch) | |
tree | 1ddf9f7d719a732b92c5c1db8dba21146f93c0a1 /test-beta/completion | |
parent | 1dfee9623937c0619b3aaf3e2139afcc14351042 (diff) | |
download | lua-language-server-9a050f2aa27dc026d0121b80084fb68093c37ac8.zip |
exp的情况
Diffstat (limited to 'test-beta/completion')
-rw-r--r-- | test-beta/completion/init.lua | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/test-beta/completion/init.lua b/test-beta/completion/init.lua index e950b40c..c042dd7b 100644 --- a/test-beta/completion/init.lua +++ b/test-beta/completion/init.lua @@ -653,25 +653,40 @@ fff[#ff$] } } --- TODO -do return end - TEST [[ local _ = fff.kkk[#$] ]] { { - label = 'fff.kkk', + label = '#fff.kkk', kind = CompletionItemKind.Snippet, textEdit = { - start = 20, + start = 19, finish = 20, - newText = 'fff.kkk]', + newText = '#fff.kkk]', }, }, } TEST [[ +fff.kkk[#$].yy +]] +{ + { + label = '#fff.kkk', + kind = CompletionItemKind.Snippet, + textEdit = { + start = 9, + finish = 10, + newText = '#fff.kkk]', + }, + }, +} + +-- TODO +do return end + +TEST [[ local t = { a = 1, } |