summaryrefslogtreecommitdiff
path: root/extension
diff options
context:
space:
mode:
Diffstat (limited to 'extension')
-rw-r--r--extension/media/edit.pngbin0 -> 246984 bytes
-rw-r--r--extension/media/explain.pngbin0 -> 464952 bytes
-rw-r--r--extension/media/generate.pngbin0 -> 1049613 bytes
-rw-r--r--extension/package.json37
-rw-r--r--extension/react-app/src/tabs/gui.tsx2
5 files changed, 15 insertions, 24 deletions
diff --git a/extension/media/edit.png b/extension/media/edit.png
new file mode 100644
index 00000000..5e77c0ea
--- /dev/null
+++ b/extension/media/edit.png
Binary files differ
diff --git a/extension/media/explain.png b/extension/media/explain.png
new file mode 100644
index 00000000..196ab914
--- /dev/null
+++ b/extension/media/explain.png
Binary files differ
diff --git a/extension/media/generate.png b/extension/media/generate.png
new file mode 100644
index 00000000..9d84e4ae
--- /dev/null
+++ b/extension/media/generate.png
Binary files differ
diff --git a/extension/package.json b/extension/package.json
index 6da4196c..314e540f 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": []
}
diff --git a/extension/react-app/src/tabs/gui.tsx b/extension/react-app/src/tabs/gui.tsx
index 292977c7..3e0fce6d 100644
--- a/extension/react-app/src/tabs/gui.tsx
+++ b/extension/react-app/src/tabs/gui.tsx
@@ -616,7 +616,7 @@ function GUI(props: GUIProps) {
>
<Trash size="1.6em" />
</HeaderButtonWithText>
- <a href="https://continue.dev/docs" className="no-underline">
+ <a href="https://continue.dev/docs/how-to-use-continue" className="no-underline">
<HeaderButtonWithText text="Docs">
<BookOpen size="1.6em" />
</HeaderButtonWithText>