We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 743d308 commit 3335129Copy full SHA for 3335129
docs/user-guides/workspace-access/zed.md
@@ -62,6 +62,19 @@ Use the Coder CLI to log in and configure SSH, then connect to your workspace wi
62
zed ssh://coder.workspace-name
63
```
64
65
+1. Connect via a coder_app workspace icon and SSH hotlink:
66
+
67
+ ```hcl
68
+ resource "coder_app" "zed" {
69
+ agent_id = coder_agent.main.id
70
+ slug = "slug"
71
+ display_name = "Zed"
72
+ external = true
73
+ url = "zed://ssh/coder.${data.coder_workspace.me.name}"
74
+ icon = "/icon/zed.svg"
75
+ }
76
+ ```
77
78
Or use Zed's [Remote Development](https://zed.dev/docs/remote-development#setup) to connect to the workspace:
79
80

0 commit comments