diff options
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index dc0bef87..7d6f526f 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,7 +8,13 @@ "request": "launch", "stopOnEntry": false, "program": "${workspaceRoot}/test.lua", - "luaexe": "${workspaceFolder}/bin/Windows/lua-language-server.exe", + "luaexe": "${workspaceFolder}/bin/Windows/lua-language-server", + "linux": { + "luaexe": "${workspaceFolder}/bin/Linux/lua-language-server" + }, + "osx": { + "luaexe": "${workspaceFolder}/bin/macOS/lua-language-server" + }, "arg": [ ], "consoleCoding": "utf8", |