From c8a62b9b42e68c29a48126e01c04b79bb15f8a77 Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee <107522312+lavafroth@users.noreply.github.com> Date: Wed, 9 Jul 2025 11:42:07 +0530 Subject: [PATCH] docs: update docs for generate and refactor directives --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5a63677..439085a 100644 --- a/README.md +++ b/README.md @@ -42,14 +42,15 @@ Mutations are defined in the same scheme as the HTTP API. Check out those detail ``` go resumeFilename := "resume.pdf" version := 3 - // silos: change the file basename to that of the parent + // refactor: change the file basename to that of the parent whereIsMyResume := filepath.Base( documentsDirectory + "CV" + "_v" + strconv.Itoa(version) + "/" + resumeFilename) ``` -The comment must follow the format `silos: ...` as shown. - +- The comment must begin with either of + - `generate: ` + - `refactor: ` - Select the code to be modified along with the comment above it. - Trigger code actions. In helix, this is `space`, `a`. - Select the option called "ask silos."