Muhammad Atif Ali fb657b875d chore(test): add terraform tests for jetbrains, zed, code-server and keep mixed mode
- 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
2025-08-08 16:33:35 +05:00
..
2025-07-03 20:42:33 +00:00

display_name description icon verified tags
Zed Add a one-click button to launch Zed ../../../../.icons/zed.svg true
ide
zed
editor

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-ssh run 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
}