summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-07-20 16:40:27 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-07-20 16:40:27 +0800
commit4bad35e608179e74c9ce186fa2038573055e574b (patch)
treeb820b8f34ab9e8a92cb6093defaab7f65ee13cbd /.vscode/launch.json
parentee83c8939fdb9547bba993132e71a0638949abe9 (diff)
downloadlua-language-server-4bad35e608179e74c9ce186fa2038573055e574b.zip
first step of love2d-api
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 802eba16..513489bc 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -34,5 +34,22 @@
]
]
},
+ {
+ "name": "love-api",
+ "type": "lua",
+ "request": "launch",
+ "stopOnEntry": false,
+ "program": "${workspaceRoot}/tools/love-api.lua",
+ "luaexe": "${workspaceFolder}/bin/Windows/lua-language-server.exe",
+ "arg": [
+ ],
+ "luaVersion": "latest",
+ "consoleCoding": "utf8",
+ "sourceCoding": "utf8",
+ "outputCapture": [
+ "print",
+ "stderr",
+ ],
+ },
]
}