diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2023-09-26 10:04:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-26 10:04:32 +0800 |
commit | f4548b560228b0c08189a35f7e5a51d7a5d0190a (patch) | |
tree | 5508b3290e774013de0f56f0c2ab7794cfe2915d /test | |
parent | 00dc914c684751296ad74431cb4f6f0459c93e7d (diff) | |
parent | 18989b42e4fdd6d299a96256d45221f1f244046a (diff) | |
download | lua-language-server-f4548b560228b0c08189a35f7e5a51d7a5d0190a.zip |
Merge pull request #2346 from lewis6991/feat/snipspace
feat: support param snippets with space
Diffstat (limited to 'test')
-rw-r--r-- | test/completion/common.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/completion/common.lua b/test/completion/common.lua index bd317259..7de1c325 100644 --- a/test/completion/common.lua +++ b/test/completion/common.lua @@ -3864,6 +3864,12 @@ local x = function (x, y) end (EXISTS) TEST [[ +--- <??> +local x = function (x, y) end +]] +(EXISTS) + +TEST [[ local x = { <??> }) |