41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
// ╭───────────────────────────────╮
|
|
// │- Zed editor tasks │
|
|
// │- author: Daniel Heras Quesada │
|
|
// ╰───────────────────────────────╯
|
|
[
|
|
{
|
|
"label": "Example task",
|
|
"command": "for i in {1..5}; do echo \"Hello $i/5\"; sleep 1; done",
|
|
"env": {
|
|
"foo": "bar"
|
|
},
|
|
"use_new_terminal": false,
|
|
"allow_concurrent_runs": false,
|
|
"reveal": "always",
|
|
"hide": "never",
|
|
"shell": "system"
|
|
},
|
|
{
|
|
"label": "Build migrate",
|
|
"command": "cd code; npm run build-migrate",
|
|
"use_new_terminal": true,
|
|
"allow_concurrent_runs": false,
|
|
"reveal": "always",
|
|
"hide": "never",
|
|
"shell": "system"
|
|
},
|
|
{
|
|
"label": "Lazygit",
|
|
"command": "lazygit",
|
|
"args": [],
|
|
"env": {},
|
|
"use_new_terminal": true,
|
|
"allow_concurrent_runs": false,
|
|
"actions": [
|
|
{
|
|
"action": "workspace::OpenFullScreen"
|
|
}
|
|
]
|
|
}
|
|
]
|