Introduction

Continue is a copilot experience for debugging. In this alpha version, we are focused on shortening the time to a fix once you have narrowed down where a bug might be. As of now, Continue supports only Python **(though JavaScript / TypeScript support are coming soon).

<aside> 🤲 Message us when it helps you, message us when it doesn’t, message us with ideas about how you want it to work. Just message us. We are improving its capabilities for more complex scenarios. We will deliver improvements based on your feedback.

</aside>

Setup

The Continue VS Code extension is available to a limited set of alpha testers at the moment. You are one of the few people on Earth who get to see a glimpse of the future of debugging ✨

Install

  1. We’ve sent you a file called continue-0.0.1.vsix. Navigate to the directory where you’ve downloaded it and run the following command from a terminal:
code --install-extension continue-0.0.1.vsix
  1. If you see a message that the code command is not found, go to any VS Code window, press cmd+shift+p to open the command palette, and type shell. The first command to come up should be Shell Command: Install ‘code’ command in PATH. Press enter to run this command, restart your terminal, and then try step 1 again.
  2. Verify the install in the Extensions sidebar menu in VS Code by looking for Continue.

Uninstall

  1. Go to the Extensions sidebar and scroll through your installed extensions until you find AutoDebug. Click Uninstall. Alternatively, you can run this command in any terminal:

    code --uninstall-extension Basin.continue
    

User Guide