diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-01-04 18:09:27 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-01-04 18:09:27 +0800 |
commit | a9c1b4135f3467a195c72ddceb393fa850399078 (patch) | |
tree | 03cb32cf111775080161ad3c179936983ae01de7 /test/completion | |
parent | bed17488513b0e7e840f4e4e8cde7b281e646e47 (diff) | |
download | lua-language-server-a9c1b4135f3467a195c72ddceb393fa850399078.zip |
close #149 supports "--#region"
Diffstat (limited to 'test/completion')
-rw-r--r-- | test/completion/init.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/completion/init.lua b/test/completion/init.lua index 3e0f5cd9..e51ab808 100644 --- a/test/completion/init.lua +++ b/test/completion/init.lua @@ -1990,3 +1990,17 @@ ${1:comment}\ } Cared['insertText'] = nil + +TEST [[ +--$ +]] +{ + { + label = '#region', + kind = define.CompletionItemKind.Snippet, + }, + { + label = '#endregion', + kind = define.CompletionItemKind.Snippet, + } +} |