From 26245032f7f5a3b5e1350227df98c49f45d5f4e9 Mon Sep 17 00:00:00 2001 From: Ryan Ward Date: Tue, 28 Jan 2020 23:09:47 -0500 Subject: [PATCH] working on some stuff --- .vscode/launch.json | 50 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d9361b2 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,50 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "launch-lua", + "type": "lua", + "request": "launch", + "workingDirectory": "${workspaceRoot}", + "sourceBasePath": "${workspaceRoot}", + "executable": "C:\\Program Files (x86)\\Lua\\5.1\\lua.exe", + "arguments": "main.lua", + "listenPublicly": false, + "listenPort": 56789, + "encoding": "UTF-8", + "env": {} + }, + { + "name": "launch-gideros", + "type": "lua", + "request": "launch", + "workingDirectory": "${workspaceRoot}", + "giderosPath": "C:/Program Files (x86)/Gideros", + "gprojPath": "${workspaceRoot}/GPROJ.gproj", + "jumpToGiderosErrorPosition": false, + "stopGiderosWhenDebuggerStops": true, + "listenPublicly": false, + "listenPort": 56789, + "encoding": "UTF-8" + }, + { + "name": "wait", + "type": "lua", + "request": "attach", + "workingDirectory": "${workspaceRoot}", + "sourceBasePath": "${workspaceRoot}", + "listenPublicly": false, + "listenPort": 56789, + "encoding": "UTF-8" + }, + { + "type": "lua", + "request": "launch", + "name": "Launch", + "program": "${workspaceFolder}/test.lua" + } + ] +} \ No newline at end of file