diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2018-10-12 17:52:08 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2018-10-12 17:52:08 +0800 |
commit | a5db35799e2deb5d07401ce52593310f93d2b151 (patch) | |
tree | f801642f0fc47e3daa16e1dddf66322ccc9ac0a3 /.vscode/launch.json | |
parent | 12efa3035f85df148b23e54e051b0769572d1589 (diff) | |
download | lua-language-server-a5db35799e2deb5d07401ce52593310f93d2b151.zip |
远程附加调试
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 4fd55b1e..d3ea8e8e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -20,6 +20,16 @@ ], "consoleCoding": "utf8", "sourceCoding": "utf8" - } + }, + { + "name": "附加", + "type": "lua", + "request": "attach", + "stopOnEntry": true, + "sourceCoding": "utf8", + "consoleCoding": "utf8", + "ip": "localhost", + "port": 546858 + }, ] } |