summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2023-09-26 10:04:32 +0800
committerGitHub <noreply@github.com>2023-09-26 10:04:32 +0800
commitf4548b560228b0c08189a35f7e5a51d7a5d0190a (patch)
tree5508b3290e774013de0f56f0c2ab7794cfe2915d /test
parent00dc914c684751296ad74431cb4f6f0459c93e7d (diff)
parent18989b42e4fdd6d299a96256d45221f1f244046a (diff)
downloadlua-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.lua6
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 = {
<??>
})