> ## Documentation Index
> Fetch the complete documentation index at: https://docs.augmentcode.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Disable GitHub Copilot

> Disable additional code assistants, like GitHub Copilot, to avoid conflicts and unexpected behavior.

export const Command = ({text}) => <span className="font-bold">{text}</span>;

export const Keyboard = ({shortcut}) => <span className="inline-block border border-gray-200 bg-gray-50 dark:border-white/10 dark:bg-gray-800 rounded-md text-xs text-gray font-bold px-1 py-0.5">
    {shortcut}
  </span>;

<Note>
  This page is primarily relevant to Enterprise plans, which continue to support [Code Completions](/using-augment/completions). On non-Enterprise plans (the former Indie, Standard, Max, and Legacy plans), Code Completions support was deprecated on March 31, 2026, so conflicts with other inline-completion assistants are no longer expected. [Read more](https://www.augmentcode.com/changelog/planned-march-31-sunset-for-next-edit-and-completions).
</Note>

## About additional code assistants

Augment is a code assistant that integrates into your favorite IDE's code suggestion system. When multiple code assistants are enabled, they can conflict with each other and cause unexpected behavior. There are multiple ways to prevent conflicts, including uninstalling the additional code assistants or disabling them. For the most up to date instructions on disabling other assistants, please refer to their documentation.

<Tabs>
  <Tab title="Visual Studio Code">
    ### Disable GitHub Copilot

    <Steps>
      <Step title="Open the Extensions panel in Visual Studio Code">
        Click the Extensions icon in the sidebar, or use the keyboard shortcut <Keyboard shortcut="Cmd/Ctrl Shift X" /> to show the Extensions panel.
      </Step>

      <Step title="Search for GitHub Copilot in your installed extensions">
        Using the search bar in the Extensions panel, search for <Command text="GitHub Copilot" />.
      </Step>

      <Step title="Disable the extension">
        Click `Disable` to disable the extension, and click <Command text="Restart Extensions" />.
      </Step>
    </Steps>

    ### Disable GitHub Copilot inline completions

    <Steps>
      <Step title="Show GitHub Copilot commands in the Command Palette">
        Click the GitHub Copilot icon in the status bar, or use the keyboard
        shortcut <Keyboard shortcut="Cmd/Ctrl Shift P" /> to show the Command Palette.
      </Step>

      <Step title="Find Disable Completions in the Command Palette">
        Search or scroll for <Command text="Disable Completions" /> in the Command Palette.
      </Step>

      <Step title="Disable completions">
        Click <Command text="Disable Completions" /> to disable inline code completions.
      </Step>
    </Steps>
  </Tab>

  <Tab title="JetBrains IDEs">
    <Note>
      For these instructions we use *JetBrains IntelliJ* as an example; please substitute the name of your JetBrains IDE for *IntelliJ* if you are using a different IDE.
    </Note>

    ### Disable GitHub Copilot

    <Steps>
      <Step title="Open the Plugins settings in your IDE">
        From the menu bar, go to <Command text="IntelliJ IDEA > Settings..." />, or use the
        keyboard shortcut <Keyboard shortcut="Cmd/Ctrl ," /> to open the Settings window. Select <Command text="Plugins" />
        from the sidebar.
      </Step>

      <Step title="Search for GitHub Copilot in your installed extensions">
        Switch to the <Command text="Installed" /> tab in the Plugins panel. Using the search bar in the Plugins panel, search for <Command text="GitHub Copilot" />.
      </Step>

      <Step title="Disable the extension">
        Click <Command text="Disable" /> to disable the extension. Then click <Command text="OK" /> to close the
        Settings window. You will need to restart your IDE for the changes to take effect.
      </Step>
    </Steps>

    ### Disable GitHub Copilot inline completions

    <Steps>
      <Step title="Show GitHub Copilot plugin menu">
        Click the GitHub Copilot icon in the status bar to show the plugin menu.
      </Step>

      <Step title="Disable completions">
        Click <Command text="Disable Completions" /> to disable inline code completions from GitHub Copilot.
      </Step>
    </Steps>
  </Tab>
</Tabs>
