- Add .tftest.hcl for jetbrains, zed, and code-server - Remove Bun tests for these migrated modules only - Keep Bun tests for other modules during transition - Update contributing guide to mention terraform test - Include runner script to execute terraform tests across modules
| display_name | description | icon | verified | tags | |||
|---|---|---|---|---|---|---|---|
| Zed | Add a one-click button to launch Zed | ../../../../.icons/zed.svg | true |
|
Zed
Add a button to open any workspace with a single click in Zed.
Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
Important
Zed needs you to either have Coder CLI installed with
coder config-sshrun or Coder Desktop
module "zed" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/zed/coder"
version = "1.0.1"
agent_id = coder_agent.example.id
}
Examples
Open in a specific directory
module "zed" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/zed/coder"
version = "1.0.1"
agent_id = coder_agent.example.id
folder = "/home/coder/project"
}
Custom display name and order
module "zed" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/zed/coder"
version = "1.0.1"
agent_id = coder_agent.example.id
display_name = "Zed Editor"
order = 1
}
With custom agent name
module "zed" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/zed/coder"
version = "1.0.1"
agent_id = coder_agent.example.id
agent_name = coder_agent.example.name
}