VS Code Integration
This guide covers how to set up, configure, and effectively use GitHub Copilot in Visual Studio Code.
Setup and Configuration
Installation
Open VS Code
Navigate to Extensions (Ctrl+Shift+X)
Search for "GitHub Copilot"
Click "Install"
After installation, click "Sign in" and authenticate with your GitHub account
Configuration Options
Access Copilot settings through:
Open VS Code settings (Ctrl+,)
Search for "Copilot"
Adjust the following key settings:
Enable GitHub Copilot
Global toggle for the extension
✓ Enabled
Inlineable Suggestions
Show inline suggestions while typing
✓ Enabled
Filter Suggestions
Filter out suggestions matching certain patterns
Based on preference
Language Support
Enable/disable for specific languages
Enable for your primary languages
Basic Usage
Code Suggestions
GitHub Copilot provides real-time code suggestions as you type:
Start typing code or add comments describing what you want to do
Copilot will display ghosted text suggestions
Accept suggestions with Tab or continue typing to reject
Using Comments to Guide Copilot
Use descriptive comments to get more accurate suggestions:
Multiple Suggestions
View alternative suggestions:
Press
Alt+]
(Windows/Linux) orOption+]
(Mac) to see the next suggestionPress
Alt+[
(Windows/Linux) orOption+[
(Mac) to see the previous suggestionPress
Alt+\
(Windows/Linux) orOption+\
(Mac) to open a separate panel with multiple suggestions
Advanced Features
GitHub Copilot Chat
Copilot Chat provides an interactive way to get coding assistance:
Open the Copilot Chat panel (using the Copilot icon in the sidebar)
Type questions or requests in natural language
Use slash commands for specific actions:
Common slash commands:
/explain
- Explain the selected code/tests
- Generate tests for the selected code/fix
- Suggest fixes for problems in the selected code/optimize
- Optimize the selected code
Code Completion vs. Code Generation
Code Completion: Small, contextual suggestions while typing
Code Generation: Creating entire functions or code blocks
For code generation:
Write a detailed comment describing what you need
Press Enter to create a new line
Wait for Copilot to generate a suggestion
Press Tab to accept or continue typing to reject
Custom Settings for DevOps Tasks
Optimize Copilot for DevOps work:
Real-World DevOps Scenarios
Scenario 1: Creating Terraform Infrastructure
Scenario 2: Writing a GitHub Actions Workflow
Scenario 3: Creating a Kubernetes Deployment
Keyboard Shortcuts
Accept suggestion
Tab
Tab
Dismiss suggestion
Esc
Esc
Show next suggestion
Alt+]
Option+]
Show previous suggestion
Alt+[
Option+[
Open Copilot panel
Alt+\
Option+\
Open Copilot Chat
Ctrl+Shift+I
Cmd+Shift+I
Generate Docs
Alt+Shift+D
Option+Shift+D
Troubleshooting
Common Issues
No suggestions appearing
Check if Copilot is enabled for the current language
Try restarting VS Code
Check your internet connection
Poor quality suggestions
Improve your comments with more detail
Add more context to your code
Try different ways of describing what you want
High latency
Check your internet connection
Close unnecessary extensions
Reduce the size of the file you're working on
Getting Support
Last updated