diff options
| -rw-r--r-- | extension/media/edit.png | bin | 0 -> 246984 bytes | |||
| -rw-r--r-- | extension/media/explain.png | bin | 0 -> 464952 bytes | |||
| -rw-r--r-- | extension/media/generate.png | bin | 0 -> 1049613 bytes | |||
| -rw-r--r-- | extension/package.json | 37 | 
4 files changed, 14 insertions, 23 deletions
| diff --git a/extension/media/edit.png b/extension/media/edit.pngBinary files differ new file mode 100644 index 00000000..5e77c0ea --- /dev/null +++ b/extension/media/edit.png diff --git a/extension/media/explain.png b/extension/media/explain.pngBinary files differ new file mode 100644 index 00000000..196ab914 --- /dev/null +++ b/extension/media/explain.png diff --git a/extension/media/generate.png b/extension/media/generate.pngBinary files differ new file mode 100644 index 00000000..9d84e4ae --- /dev/null +++ b/extension/media/generate.png diff --git a/extension/package.json b/extension/package.json index 9d0ef3ac..b2db62e2 100644 --- a/extension/package.json +++ b/extension/package.json @@ -159,45 +159,36 @@      "walkthroughs": [        {          "id": "continue", -        "title": "Getting Started with Continue", -        "description": "Learn how to effectively use Continue", +        "title": "Getting Started", +        "description": "Learn how to use Continue",          "steps": [            {              "id": "edit", -            "title": "Highlight and Edit", -            "description": "This step will run a command and check off once it has been run.\n[Run Command](command:getting-started-sample.runCommand)", +            "title": "Edit in natural language", +            "description": "Highlight a section of code and instruct Continue to refactor it (e.g. `/edit Make this use more descriptive variable names`)",              "media": { -              "image": "media/image.png", +              "image": "media/edit.png",                "altText": "Empty image"              }, -            "completionEvents": [ -              "onCommand:continue.acceptSuggestion" -            ] +            "completionEvents": []            },            {              "id": "explain", -            "title": "Ask Questions", -            "description": "This step will change a setting and check off when the setting has changed\n[Change Setting](command:getting-started-sample.changeSetting)", +            "title": "Get possible explanations", +            "description": "Ask Continue about a part of your code to get another perspective (e.g. `/explain how do I find running process on port 8000?`)",              "media": { -              "markdown": "media/walkthrough.md" +              "image": "media/explain.png", +              "altText": "Empty image"              },              "completionEvents": []            },            {              "id": "generate", -            "title": "Generate Files from Scratch", -            "description": "Ask Continue to create a file from scratch.", -            "media": { -              "markdown": "media/walkthrough.md" -            }, -            "completionEvents": [] -          }, -          { -            "id": "commands", -            "title": "Use a Slash Command", -            "description": "Highlight some code then type '/explain' followed by a question. Slash commands let you select exactly the function you'd like Continue to perform. Others include '/edit' (to edit code), '/comment' (to comment code), and '/feedback' (to share with us what you think of Continue).", +            "title": "Generate files from scratch", +            "description": "Let Continue build the scaffolding of Python scripts, React components, and more (e.g. `Create a shell script to back up my home dir to /tmp/`)",              "media": { -              "markdown": "media/walkthrough.md" +              "image": "media/generate.png", +              "altText": "Empty image"              },              "completionEvents": []            } | 
