From 768fb366a33458e67bd42c0b405345aa503313d1 Mon Sep 17 00:00:00 2001 From: Tanner Davis Date: Tue, 26 Nov 2024 22:05:52 +0000 Subject: [PATCH] update version in readme --- windsurf-desktop/README.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/windsurf-desktop/README.md b/windsurf-desktop/README.md index a31455c..a602dd0 100644 --- a/windsurf-desktop/README.md +++ b/windsurf-desktop/README.md @@ -11,4 +11,25 @@ tags: [ide, windsurf, helper] Add a button to open any workspace with a single click in Windsurf IDE. -Uses the [Coder Remote Windsurf Extension](https://github.com/coder/windsurf-coder). +Uses the [Coder Remote VS Code Extension](https://github.com/coder/vscode-coder). + +```tf +module "windsurf" { + source = "registry.coder.com/modules/windsurf/coder" + version = "1.0.19" + agent_id = coder_agent.example.id +} +``` + +## Examples + +### Open in a specific directory + +```tf +module "windsurf" { + source = "registry.coder.com/modules/windsurf/coder" + version = "1.0.19" + agent_id = coder_agent.example.id + folder = "/home/coder/project" +} +```