Skip to content

Commit 2b22466

Browse files
committed
move zed up amongst the ides
1 parent e545c44 commit 2b22466

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

docs/admin/templates/extending-templates/web-ides.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,21 @@ module "airflow" {
315315

316316
![Airflow in Coder](../../../images/airflow-port-forward.png)
317317

318+
## Zed
319+
320+
Configure your agent and `coder_app` like to include a Zed hotlink:
321+
322+
```hcl
323+
resource "coder_app" "zed" {
324+
agent_id = coder_agent.main.id
325+
slug = "slug"
326+
display_name = "Zed"
327+
external = true
328+
url = "zed://ssh/coder.${data.coder_workspace.me.name}"
329+
icon = "/icon/zed.svg"
330+
}
331+
```
332+
318333
## File Browser
319334

320335
To access the contents of a workspace directory in a browser, you can use File
@@ -368,21 +383,6 @@ module "filebrowser" {
368383

369384
![File Browser](../../../images/file-browser.png)
370385

371-
## Zed
372-
373-
Configure your agent and `coder_app` like to include a Zed hotlink:
374-
375-
```hcl
376-
resource "coder_app" "zed" {
377-
agent_id = coder_agent.main.id
378-
slug = "slug"
379-
display_name = "Zed"
380-
external = true
381-
url = "zed://ssh/coder.${data.coder_workspace.me.name}"
382-
icon = "/icon/zed.svg"
383-
}
384-
```
385-
386386
## SSH Fallback
387387

388388
If you prefer to run web IDEs in localhost, you can port forward using

0 commit comments

Comments
 (0)