Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mikefrobbins/f6889e393be0e803012e1edbf3dbae9f to your computer and use it in GitHub Desktop.
Save mikefrobbins/f6889e393be0e803012e1edbf3dbae9f to your computer and use it in GitHub Desktop.
Enable tab completion for GitHub Copilot suggestions in VS Code

From VS Code, press F1 or Ctrl + Shift + P. Type "Open Keyboard Shortcuts (JSON)". Add the following to keybindings.json:

[
  {
    "key": "tab",
    "command": "editor.action.inlineSuggest.commit",
    "when": "textInputFocus && inlineSuggestionHasIndentationLessThanTabSize && inlineSuggestionVisible && !editorTabMovesFocus"     
  }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment