diff options
-rw-r--r-- | README.md | 18 | ||||
-rw-r--r-- | docs/docs/how-to-use-continue.md | 10 | ||||
-rw-r--r-- | docs/docs/intro.md | 2 | ||||
-rw-r--r-- | extension/README.md | 14 | ||||
-rw-r--r-- | extension/package.json | 2 |
5 files changed, 23 insertions, 23 deletions
@@ -10,7 +10,7 @@ [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![Twitter URL](https://img.shields.io/twitter/url?style=social&url=https%3A%2F%2Fgithub.com%2Fcontinuedev%2Fcontinue) - <a target="_blank" href="https://discord.gg/DvACJvjx" style="background:none"> + <a target="_blank" href="https://discord.gg/vapESyrFmJ" style="background:none"> <img src="https://img.shields.io/badge/discord-join-continue.svg?labelColor=191937&color=6F6FF7&logo=discord" /> </a> @@ -21,23 +21,23 @@ ### Edit in natural language +### Get possible explainations + +Ask Continue about a part of your code to get another perspective +- `what might cause this error?` +- `what is the load_dotenv library name?` +- `how do I find running process on port 8000?` + Highlight a section of code and instruct Continue to refactor it - `/edit Make this use more descriptive variable names` - `/edit Rewrite this API call to grab all pages` - `/edit Use 'Union' instead of a vertical bar here` -### Get possible explainations - -Ask Continue about a part of your code to get another perspective -- `/explain what might cause this error?` -- `/explain what is the load_dotenv library name?` -- `/explain how do I find running process on port 8000?` - ### Generate files from scratch Let Continue build the scaffolding of Python scripts, React components, and more - `Create a shell script to back up my home dir to /tmp/` -- `Write Python in a new file to get Posthog events` +- `Write a Python script to get Posthog events` - `Add a React component for syntax highlighted code` ## Getting Started diff --git a/docs/docs/how-to-use-continue.md b/docs/docs/how-to-use-continue.md index e1efcac0..96c44228 100644 --- a/docs/docs/how-to-use-continue.md +++ b/docs/docs/how-to-use-continue.md @@ -12,8 +12,8 @@ As you use Continue more, you will learn when to trust it. A great way to get st If you are trying to use it for a new task and don’t have a sense of how much Continue can help you complete it, it can often be helpful to start like this: -1. Highlight any code that you don’t understand and type `/explain tell me how this code works` -2. If the explanation seems reasonable, then, while still highlighting the code, type `/explain how would you change this code to [INSERT TASK]?` +1. Highlight any code that you don’t understand and type `tell me how this code works` +2. If the explanation seems reasonable, then, while still highlighting the code, type `how would you change this code to [INSERT TASK]?` 3. If this explanation is also pretty good, then, while still highlighting the code, type `/edit [INSERT TASK]` 4. If it does not work on first attempt, click `reject` on its suggestions and try again—often it will make a different suggestion each time 5. If it not giving you what you want, click `reject` and try again with more specific / clear instructions, articulating exactly what you want it to do and not to do @@ -43,7 +43,7 @@ After selecting a code section, try to refactor it with Continue (e.g “/edit c ### Ask about highlighted code or an entire file -If you don't understand how some code works, highlight it and ask "/explain how does this code work?" +If you don't understand how some code works, highlight it and ask "how does this code work?" ### Ask about errors @@ -51,7 +51,7 @@ Continue can also help explain errors and offer possible solutions. You will nee ### Figure out what shell command to run -Instead of switching windows and getting distracted, you can ask things like "/explain How to I find running process on port 8000?" +Instead of switching windows and getting distracted, you can ask things like "How do I find running process on port 8000?" ### Ask single-turn open-ended questions @@ -91,7 +91,7 @@ If you highlight very long lines (e.g. a complex SVG), you might also run into i ### Using context from many other files -Similar to how you would make changes manually, focus on one file at a time. If there is key information in another file, try copy and pasting that section into the text input along with your `/edit` or `/explain` instructions. +Similar to how you would make changes manually, focus on one file at a time. If there is key information in another file, try copy and pasting that section into the text input along with your instructions. ### Tasks with many steps diff --git a/docs/docs/intro.md b/docs/docs/intro.md index 211087fa..731a42ab 100644 --- a/docs/docs/intro.md +++ b/docs/docs/intro.md @@ -4,6 +4,6 @@ **Continue is the open-source autopilot for software development—a [VS Code extension](https://marketplace.visualstudio.com/items?itemName=Continue.continue) that brings the power of ChatGPT to your IDE** -You determine when Large Language Models (LLMs) like [GPT-4](https://openai.com/research/gpt-4) should act as an autopilot, helping you complete software development tasks. You highlight some code and then use slash commands like `/edit` and `/explain` + natural language instructions to tell the language model what to do. +You determine when Large Language Models (LLMs) like [GPT-4](https://openai.com/research/gpt-4) should act as an autopilot, helping you complete software development tasks. You highlight some code and then use natural language instructions (and optional slash commands like `/edit`) to tell the language model what to do. Many developers have begun to use [ChatGPT](https://openai.com/blog/chatgpt) while coding; however, the experience is painful because of how much copying, pasting, and editing is required to provide the context and incorporate the generated answers into your codebase. Continue eliminates this pain by enabling LLMs to natively act in your IDE as you complete your workflows.
\ No newline at end of file diff --git a/extension/README.md b/extension/README.md index 4786c99b..b57aedb7 100644 --- a/extension/README.md +++ b/extension/README.md @@ -4,6 +4,13 @@ ## Task, not tab, auto-complete +### Get possible explainations + +Ask Continue about a part of your code to get another perspective +- `what might cause this error?` +- `what is the load_dotenv library name?` +- `how do I find running process on port 8000?` + ### Edit in natural language Highlight a section of code and instruct Continue to refactor it @@ -11,13 +18,6 @@ Highlight a section of code and instruct Continue to refactor it - `/edit Rewrite this API call to grab all pages` - `/edit Use 'Union' instead of a vertical bar here` -### Get possible explainations - -Ask Continue about a part of your code to get another perspective -- `/explain what might cause this error?` -- `/explain what is the load_dotenv library name?` -- `/explain how do I find running process on port 8000?` - ### Generate files from scratch Let Continue build the scaffolding of Python scripts, React components, and more diff --git a/extension/package.json b/extension/package.json index aa6a7a30..e1de3b73 100644 --- a/extension/package.json +++ b/extension/package.json @@ -191,7 +191,7 @@ { "id": "explain", "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?`)", + "description": "Ask Continue about a part of your code to get another perspective (e.g. `how do I find running process on port 8000?`)", "media": { "image": "media/explain.png", "altText": "Empty image" |