dots-of-war/private_dot_config/zed/tasks.json

20 lines
417 B
JSON
Raw Normal View History

2024-11-16 16:56:15 +00:00
// Static tasks configuration.
[
{
"label": "Cargo test",
"command": "cargo nextest run",
"env": {},
//"cwd": "/path/to/working/directory",
"use_new_terminal": false,
"allow_concurrent_runs": false
},
{
"label": "Cargo run",
"command": "cargo run",
"env": {},
//"cwd": "/path/to/working/directory",
"use_new_terminal": false,
"allow_concurrent_runs": false
}
]