diff --git a/.zed/tasks.json b/.zed/tasks.json new file mode 100644 index 000000000000..4f81f57d2e8e --- /dev/null +++ b/.zed/tasks.json @@ -0,0 +1,35 @@ +[ + { + "label": "Clobber", + "command": "./mach clobber" + }, + { + "label": "Clobber Python", + "command": "./mach clobber python" + }, + { + "label": "Configure", + "command": "./mach configure" + }, + { + "label": "Build", + "command": "./mach build" + }, + { + "label": "Build binaries", + "command": "./mach build binaries" + }, + { + "label": "Build faster", + "command": "./mach build faster" + }, + { + "label": "Run", + "command": "./mach run" + }, + { + "label": "Run Test", + "command": "./mach", + "args": ["test", "$ZED_FILE"] + } +]