// A launch configuration that compiles the extension and then opens it inside a new window { "version": "0.2.0", "configurations": [ { "name": "ζ΅‹θ―•", "type": "lua", "request": "launch", "stopOnEntry": false, "program": "${workspaceRoot}/test.lua", "arg": [ ], "consoleCoding": "utf8", "sourceCoding": "utf8", "luaexe": "${workspaceFolder}/bin/Windows/lua-language-server.exe", "outputCapture": [ "print", "stderr", ], }, { "name": "ι™„εŠ ", "type": "lua", "request": "attach", "stopOnEntry": true, "address": "127.0.0.1:11411", "outputCapture": [ ] }, { "name": "πŸΊζ΅‹θ―•-beta", "type": "lua", "request": "launch", "stopOnEntry": false, "program": "${workspaceRoot}/test-beta.lua", "luaexe": "${workspaceFolder}/bin/Windows/lua-language-server.exe", "arg": [ ], "consoleCoding": "utf8", "sourceCoding": "utf8", "outputCapture": [ "print", "stderr", ], }, { "name": "ι™„εŠ -beta", "type": "lua", "request": "attach", "stopOnEntry": true, "address": "127.0.0.1:11413", "outputCapture": [ ] }, ] }