From abd970755a8c26a3fae41157a8e52346359ea0be Mon Sep 17 00:00:00 2001 From: Joakim Repomaa Date: Mon, 3 Mar 2025 10:00:13 +0200 Subject: [PATCH] add zed tasks --- .zed/tasks.json | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .zed/tasks.json diff --git a/.zed/tasks.json b/.zed/tasks.json new file mode 100644 index 0000000..651ab50 --- /dev/null +++ b/.zed/tasks.json @@ -0,0 +1,41 @@ +[ + { + "label": "Apply local", + "command": "apply-local", + "use_new_terminal": false, + "allow_concurrent_runs": true, + "reveal": "no_focus", + "reveal_target": "dock", + "hide": "on_success" + }, + { + "label": "Apply remote", + "command": "apply", + "args": ["--build-on-target"], + "use_new_terminal": false, + "allow_concurrent_runs": true, + "reveal": "no_focus", + "reveal_target": "dock", + "hide": "on_success" + }, + { + "label": "Apply on freun-dev", + "command": "apply", + "args": ["--build-on-target", "--on", "freun-dev"], + "use_new_terminal": false, + "allow_concurrent_runs": true, + "reveal": "no_focus", + "reveal_target": "dock", + "hide": "on_success" + }, + { + "label": "Apply on apu", + "command": "apply", + "args": ["--build-on-target", "--on", "apu"], + "use_new_terminal": false, + "allow_concurrent_runs": true, + "reveal": "no_focus", + "reveal_target": "dock", + "hide": "on_success" + } +]