diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-11-08 11:51:49 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-11-08 11:51:49 +0800 |
commit | fe9dfabffeb6460f41c9f74fbeb4093db67bed4a (patch) | |
tree | ae793962f1ff0d08929f4393f877dedc997fda46 /.vscode | |
parent | 444851fc1adb2fe3a0f952807cb4b644e18790c1 (diff) | |
download | lua-language-server-fe9dfabffeb6460f41c9f74fbeb4093db67bed4a.zip |
修正一些bug
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 521f9fc4..a60710f0 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -12,7 +12,11 @@ ], "consoleCoding": "utf8", "sourceCoding": "utf8", - "luaRuntime": "5.4 64bit" + "luaRuntime": "5.4 64bit", + "outputCapture": [ + "print", + "stderr", + ], }, { "name": "附加", @@ -40,7 +44,11 @@ "consoleCoding": "utf8", "sourceCoding": "utf8", "preLaunchTask": "编译", - "luaRuntime": "5.4 64bit" + "luaRuntime": "5.4 64bit", + "outputCapture": [ + "print", + "stderr", + ], }, { "name": "发布", @@ -52,7 +60,11 @@ ], "consoleCoding": "utf8", "sourceCoding": "utf8", - "luaRuntime": "5.4 64bit" + "luaRuntime": "5.4 64bit", + "outputCapture": [ + "print", + "stderr", + ], }, { "name": "🍺测试-beta", @@ -64,7 +76,11 @@ ], "consoleCoding": "utf8", "sourceCoding": "utf8", - "luaRuntime": "5.4 64bit" + "luaRuntime": "5.4 64bit", + "outputCapture": [ + "print", + "stderr", + ], }, { "name": "附加-beta", |