From b891fa482336183cde70ee412a8e19842f311d4c Mon Sep 17 00:00:00 2001 From: Jeff Moe Date: Thu, 19 Sep 2024 17:51:26 -0600 Subject: [PATCH] theia, parrot python launcher --- .theia/launch.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .theia/launch.json diff --git a/.theia/launch.json b/.theia/launch.json new file mode 100644 index 0000000..ebd2dd4 --- /dev/null +++ b/.theia/launch.json @@ -0,0 +1,17 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + "version": "0.2.0", + "configurations": [ + + { + "name": "Python: Current File", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal", + "justMyCode": true + } + ] +} +