Getting started with GitHub Copilot in VS Code
This tutorial walks you through setting up the GitHub Copilot extension, and discovering the key features of GitHub Copilot in Visual Studio Code. Learn how to get started with AI-powered code suggestions, use chat conversations to refactor your code, and fix code errors with smart actions.
In this tutorial, you're using GitHub Copilot to help you create a Calculator class in TypeScript.
Note: While we're using TypeScript for this tutorial, please note that Copilot is also trained on numerous other languages and a wide variety of frameworks.
For an overview of what you can do with GitHub Copilot in VS Code, see the GitHub Copilot Overview.
Set up VS Code for GitHub Copilot
Step 1: Set up your GitHub Copilot subscription
If you want to use GitHub Copilot, you either need an active subscription for GitHub Copilot in your personal account, or you need to be assigned a seat in a subscription managed by an organization or enterprise.
| Account type | Instructions |
|---|---|
| Personal account | Set up a subscription to GitHub Copilot Individual with your personal GitHub account. You can activate a one-time 30-day trial to evaluate GitHub Copilot. If you didn't yet activate your free trial for Copilot, the GitHub Copilot extension notifies you in VS Code. ![]() |
| Member of an organization | You need to be assigned a seat by an organization owner. You can request access to GitHub Copilot Business from the GitHub Copilot settings for your personal account. ![]() |
Learn more about billing for GitHub Copilot.
Step 2: Install the GitHub Copilot extension
You use the GitHub Copilot extension to power your artificial intelligence (AI) suggestions in VS Code.
When you install the GitHub Copilot extension, the GitHub Copilot Chat extension is also installed.
Step 3: Sign in to GitHub
To use GitHub Copilot in Visual Studio Code, you must be signed into Visual Studio Code with the same GitHub account that has access to GitHub Copilot.
If you didn't previously authorize VS Code in your GitHub account, you're prompted to sign in to GitHub in VS Code:

In your browser, GitHub requests the necessary permissions for GitHub Copilot. To approve these permissions, select Authorize Visual Studio Code.
Note: If your Copilot subscription is associated with another GitHub account, sign out of your GitHub account in VS Code, and sign in with another account. Use the Accounts menu in the Activity bar for signing out of your current GitHub account.
Get your first code suggestion
Now that you've signed up for Copilot and activated the extension, let's see its assistance in action!
To get started with GitHub Copilot in VS Code, you don't have to do anything special. As you're typing code in the editor, Copilot automatically presents you code suggestions in the editor to help you code more efficiently.
-
Open Visual Studio Code and create a new TypeScript file
Calculator.ts. -
Notice from the status bar that GitHub Copilot is active.

-
In the TypeScript file, start typing the following class definition.
class CalculatorCopilot automatically suggests a method for our
Calculatorclass in gray dimmed text (ghost text). In our example, theaddmethod is suggested. The exact suggestions can vary.
-
To accept the suggestion, press the Tab key.
Congratulations! You've just accepted your first AI-powered inline suggestion. As you continue typing, Copilot updates the inline suggestion accordingly.
-
For any given input, there might be multiple suggestions. Type the following inside the class to add a
fibonaccimethod:fibonacci(n: number): number { -
Hover over the suggestion in the editor and notice that there are multiple suggestions.

You can use the arrow controls or use the keybindings to show the next (⌥] (Windows, Linux Alt+])) or previous (⌥[ (Windows, Linux Alt+[)) suggestion.
AI-powered code completions can help you with generating boilerplate or repetitive code, letting you stay in the developer flow and focus on more complex coding tasks.
Refactor your code through AI chat
As you work on an existing codebase, you often need to refactor or improve existing code. With the Copilot Chat extension, you can use AI-driven chat conversations in VS Code to ask specific tasks about your code.
Let's use Copilot Chat to help us with generating and refactoring code.
-
First, add a new TypeScript file
server.tsto your workspace.Let's use the Copilot inline chat in the editor to generate a simple Express web server.
-
Now, press ⌘I (Windows, Linux Ctrl+I) on your keyboard to bring up Copilot inline chat.
With Copilot inline chat you get a chat interface that lets you ask questions about your code by using natural language.

-
Type "add a simple express web server" in the chat input field, and press Enter to send the chat request or prompt to Copilot.
Notice that Copilot returns a streaming response into the editor. The response is an implementation for a simple Node.js Express web server.

-
Select Accept or press ⌘Enter (Windows, Linux Ctrl+Enter) to apply the proposed code changes.
Congratulations! You've used GitHub Copilot Chat for generating code using chat and natural language.
Now, let's use Copilot Chat to help us refactor the code to return a static HTML file as the home page, instead of "Hello, World!".
-
In the editor, select the
app.get('/', req, res) method, and then press ⌘I (Windows, Linux Ctrl+I) to start inline chat.By selecting a range of text in the editor, you provide more context to Copilot about your request.
-
Type "return a static index.html file" in the chat input field, and press Enter to send the chat request or prompt.
Notice how Copilot updates the existing method implementation to return an
index.htmlfile. Optionally, select the Show changes button to view a diff view and compare the changes.
-
Select Accept or press ⌘Enter (Windows, Linux Ctrl+Enter) to apply the proposed code changes.
Experiment further with Copilot Chat, for example to add more routes to your web server, or ask Copilot Chat to add error handling, and more.
With Copilot Chat you can use a chat conversation and natural language to direct Copilot to perform specific tasks on your codebase. With inline chat, you can stay in the flow of coding, and ask for AI assistance in the moment, when you need it, without switching context.
Use Copilot Chat for general programming questions
As you're working in a new codebase, or exploring a new programming language, you might have more general questions come up. GitHub Copilot Chat lets you open a chat conversation on the side, and which keeps track of the history of your questions.
-
Open the Chat view from the Activity Bar or press ⌃⌘I (Windows, Linux Ctrl+Alt+I).

-
Type "what is recursion?" in the chat input field and press Enter to send the request to Copilot.

Notice how the chat response contains rich results, consisting of text and a code block.
-
You can also drag the Chat view to the Secondary side bar, for example if you want to view both the Chat view and Explorer view.

Learn about custom layouts and the Secondary side bar.
Fix coding errors with Copilot
Aside from inline completions and chat conversations, GitHub Copilot is available in different places and throughout your developer flow in VS Code. You might notice the presence of Copilot functionality through the sparkle icon in the VS Code user interface.
One such place is the Copilot coding actions in the editor, whenever there you have a red squiggle because of a compiler error. Let's see how Copilot can help with resolving coding errors.
-
Open the
server.tsTypeScript file that you created earlier in the editor.Notice that the
import express from 'express';statement contains a red squiggle. If you put the cursor on the red squiggle, you can see the Copilot sparkle appear.
-
Select the sparkle to view the Copilot code actions, and then select Fix using Copilot.

Notice that the second argument gets a red squiggle because the method only accepts one argument.
-
Notice that the Copilot inline chat comes up, prepopulated with the error message, and a solution to fix the problem.

Directly from the chat response, you can optionally select the Insert into Terminal button to copy the proposed command in your terminal.
Congratulations
Congratulations, you've now used artificial intelligence to enhance your coding! In this tutorial, you successfully set up Copilot in VS Code, and used Copilot code completions, Copilot Chat, and code actions to help you code more efficiently.
You've started experimenting with Copilot and there's a lot more you can do with it! To learn more about GitHub Copilot Chat, proceed to the Copilot Chat Tutorial.



