Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions registry/coder/modules/zed/README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
---
display_name: Zed Editor
description: Add a one-click button to launch Zed Editor
display_name: Zed
description: Add a one-click button to launch Zed
icon: ../../../../.icons/zed.svg
maintainer_github: coder
verified: true
tags: [ide, zed, editor]
---

# Zed Editor
# Zed

Add a button to open any workspace with a single click in Zed Editor.
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](https://coder.com/docs/user-guides/desktop).
> Zed needs you to either have Coder CLI installed with `coder config-ssh` run or [Coder Desktop](https://coder.com/docs/user-guides/desktop)

```tf
module "zed" {
Expand Down
6 changes: 3 additions & 3 deletions registry/coder/modules/zed/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ variable "agent_name" {

variable "folder" {
type = string
description = "The folder to open in Zed Editor."
description = "The folder to open in Zed."
default = ""
}

Expand All @@ -47,7 +47,7 @@ variable "slug" {
variable "display_name" {
type = string
description = "The display name of the app."
default = "Zed Editor"
default = "Zed"
}

data "coder_workspace" "me" {}
Expand All @@ -73,5 +73,5 @@ resource "coder_app" "zed" {

output "zed_url" {
value = coder_app.zed.url
description = "Zed Editor URL."
description = "Zed URL."
}