{ // 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": "Python: Aktuelle Datei", "type": "python", "request": "launch", "program": "${file}", "console": "integratedTerminal", "env": { "PYTHONPATH": "${workspaceFolder}/src/:${workspaceFolder}/venv/bin/python" } }, { "name": "CCL", "type": "python", "request": "launch", "cwd": "/home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cclang/src/", "program": "cc_lang_interpreter/main.py", "console": "integratedTerminal", "args": [ "First.ccl" ], "env": { "PYTHONPATH": "${workspaceFolder}/src/:${workspaceFolder}/venv/bin/python" } }, { "name": "CCL: File", "type": "python", "request": "launch", "cwd": "/home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cclang/src/", "program": "cc_lang_interpreter/main.py", "console": "integratedTerminal", "args": [ "-p", "../cc_code_preview" ], "env": { "PYTHONPATH": "${workspaceFolder}/src/:${workspaceFolder}/venv/bin/python" } }, { "name": "CCL: Console", "type": "python", "request": "launch", "cwd": "/home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cclang/src/", "program": "cc_lang_interpreter/main.py", "console": "integratedTerminal", "args": [], "env": { "PYTHONPATH": "${workspaceFolder}/src/:${workspaceFolder}/venv/bin/python" } } ] }