mirror of
https://github.com/1j01/textual-paint.git
synced 2024-12-21 05:41:54 +03:00
32 lines
1.0 KiB
JSON
32 lines
1.0 KiB
JSON
{
|
|
// 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": "Run Textual App",
|
|
"type": "python",
|
|
"request": "launch",
|
|
// Replace this with the output of `which textual`
|
|
// TODO: is there a way to get this from the environment??
|
|
// or to use textual as "module" but still run the correct app?
|
|
// I tried a lot of variations of this, but none worked.
|
|
"program": "${userHome}/.local/bin/textual",
|
|
"args": ["run", "--dev", "paint.py --clear-screen"],
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false
|
|
},
|
|
{
|
|
"name": "Open A File in App",
|
|
"type": "python",
|
|
"request": "launch",
|
|
// "program": "paint.py",
|
|
// "args": ["LICENSE.txt"],
|
|
"program": "${userHome}/.local/bin/textual",
|
|
"args": ["run", "--dev", "paint.py --clear-screen LICENSE.txt"],
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false
|
|
}
|
|
]
|
|
} |