diff options
author | sumneko <sumneko@hotmail.com> | 2019-04-17 13:50:38 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2019-04-17 13:50:38 +0800 |
commit | dfce55a48eb5f7f69bd64eba2b523b4e15e7e342 (patch) | |
tree | 21104eb9f101cdfc73657b2306bf6b2ddbf3fe0e /.vscode | |
parent | 23ce4d049c7076edcd700fbac01554069c5de554 (diff) | |
download | lua-language-server-dfce55a48eb5f7f69bd64eba2b523b4e15e7e342.zip |
特殊处理pairs,使其返回真正的next
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index e6f98b3e..79304554 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -12,14 +12,16 @@ "env": { "PATH": "${workspaceRoot}\\server\\bin\\" }, - "luaexe": "${workspaceRoot}\\server\\bin\\lua-language-server.exe", - "luadll": "${workspaceRoot}\\server\\bin\\lua54.dll", + //"luaexe": "${workspaceRoot}\\server\\bin\\lua-language-server.exe", + //"luadll": "${workspaceRoot}\\server\\bin\\lua54.dll", "path": "${workspaceRoot}/server/bin/?.lua", "cpath": "${workspaceRoot}/server/bin/?.dll;", "arg": [ ], "consoleCoding": "utf8", - "sourceCoding": "utf8" + "sourceCoding": "utf8", + "experimentalServer": true, + "luaRuntime": "5.4 64bit" }, { "name": "附加", |