Skip to main content

Quickstart for using GitHub Copilot in your IDE

Use Copilot in your IDE to explain concepts, complete code, propose edits, and validate files with agent mode.

GitHub Copilot is available in supported IDEs: Visual Studio Code, Visual Studio, JetBrains IDEs, Eclipse, and XCode. It can answer questions and explain concepts, and suggest or complete code as you work. In IDEs that support agent mode, it can also propose edits and validate files.

This quickstart shows you how to use these capabilities. It takes about ten minutes.

Prerequisites

Ask a question about your code

  1. Open an existing code file in your editor.

  2. Open the Copilot Chat window.

    The way you do this depends on your IDE.

    • In Visual Studio Code, press Ctrl+Alt+I (Windows/Linux) or Control+Command+I (macOS).
    • In other IDEs, look for Copilot Chat in the menu bar or sidebar. See GitHub CopilotにIDEで質問を行う.
  3. Type what does this file do, then press Enter.

    Copilot's answer displays below your question.

  4. Select a line of code in the editor, then type explain this line in the chat window.

Copilot can see the file you have open, so you can ask about your code instead of describing it first.

Let Copilot work through a task

Most IDEs support agent mode. In agent mode, you describe what you want, and Copilot decides which files to change, makes the edits, and runs commands with your approval.

To check whether your IDE supports agent mode, see Copilot機能マトリックス.

  1. In the chat window, select Agent, then describe a task. For example, Create a task manager web app with the ability to add, delete, and mark tasks as completed.

  2. Press Enter.

    Copilot generates the files and code needed.

  3. Review the changes, then use your IDE's controls to accept them.

When you're ready, save your changes, and commit when everything looks good.

Get your first inline suggestion

GitHub Copilot can suggest code as you work and supports many programming languages. This example uses JavaScript, but you can follow along in your preferred language.

  1. In your IDE, create a new JavaScript (*.js) file.

  2. JavaScript ファイルで、次の関数ヘッダーを入力します。

    JavaScript
    function calculateDaysBetweenDates(begin, end) {
    

    Copilot will automatically suggest an entire function body in grayed text. The exact suggestion may vary.

  3. 候補を受け入れるには、Tab キーを押します。

When you're ready, save your changes, and commit when everything looks good.

Next steps