Copilot is not showing suggestions:
No ghost text appears as you type. Here is how to fix it.
Fix 1: Check Copilot is enabled
- Open VS Code
- Click Copilot icon in status bar
- Ensure it says “Copilot: Active”
Or check settings:
// settings.json
{
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": true
}
}
Fix 2: Re-authenticate
- Click Copilot icon
- Select “Sign Out”
- Sign in with GitHub account
- Ensure you have an active subscription
Fix 3: Check file type
Copilot may be disabled for certain files:
// settings.json
{
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": true,
"scminput": false
}
}
Fix 4: Disable conflicting extensions
Other extensions may interfere:
- Open Extensions (Cmd+Shift+X)
- Disable other AI extensions
- Restart VS Code
- Re-enable Copilot
Fix 5: Check network
Copilot needs internet:
# Test connection
ping api.githubcopilot.com
# Check proxy settings
# VS Code > Settings > Proxy
Fix 6: Clear Copilot cache
# macOS
rm -rf ~/Library/Application\ Support/Code/User/globalStorage/github.copilot
# Restart VS Code
Fix 7: Use different model
Try switching models:
- Click Copilot icon
- Select “Change Model”
- Try GPT-4o or Claude 3.5 Sonnet
Still not working?
- Check GitHub status — githubstatus.com
- Reinstall extension — Uninstall and reinstall Copilot
- Check subscription — Ensure Copilot is active
- Use Copilot Chat — May work even if completions don’t
FAQ
Why is GitHub Copilot not showing suggestions?
The most common causes are: Copilot is disabled in settings, your subscription has expired, or the file type is not supported. Check that Copilot is enabled in VS Code settings and that your GitHub account has an active subscription.
How do I enable Copilot in VS Code?
Go to Settings (Cmd+,), search for “copilot”, and ensure “GitHub Copilot: Enable” is checked for the file types you want. Also check the Copilot icon in the status bar to see if it is active.
Can I use Copilot for free?
GitHub Copilot has a free tier for verified students, teachers, and open source maintainers. For everyone else, it requires a paid subscription ($10/month for individuals, $19/month for business).
Related: GitHub Copilot Complete Guide · Cursor vs Copilot · Best AI Coding Tools 2026 · Claude Code Complete Guide