>>108718669
>running my python/c++
you can set up Tasks for this. I did it for JavaScript for example:
Task:
{
"label": "JavaScript",
"command": "node $ZED_FILE",
"env": {},
"cwd": "$ZED_WORKTREE_ROOT",
"use_new_terminal": false,
"allow_concurrent_runs": false,
"reveal": "no_focus",
"show_summary": false,
"show_command": false,
},
Keybind:
"alt-a": ["task::Spawn", { "task_name": "JavaScript" }],
for c++ you could replace my label and command with:
"label": "C++ : Build and Run",
"command": "g++ $ZED_FILE -o a && ./a",