GitHub Copilot Not Suggesting Fix: Autocomplete and Chat Issues (2026)
GitHub Copilot stopped suggesting code, shows a spinning icon, or the chat panel is empty. Here are the fixes.
Fix 1: Check subscription status
The most common cause β your subscription expired or payment failed:
- Go to github.com/settings/copilot
- Verify your subscription is active
- Check payment method is valid
Free tier users: Copilot Free has limited completions per month. If youβve hit the limit, suggestions stop until the next billing cycle.
Fix 2: Re-authenticate
VS Code: Cmd/Ctrl + Shift + P β "GitHub Copilot: Sign Out"
Then: "GitHub Copilot: Sign In"
For JetBrains: Settings β Tools β GitHub Copilot β Sign Out β Sign In
Fix 3: Check the Copilot icon
Look at the bottom-right status bar in VS Code:
| Icon | Meaning | Fix |
|---|---|---|
| β Copilot icon (normal) | Working | No fix needed |
| β οΈ Copilot icon with warning | Partially working | Check output panel |
| β Copilot icon crossed out | Disabled for this file | Check language settings |
| π Spinning | Processing | Wait, or restart |
| No icon | Extension not loaded | Reinstall extension |
Fix 4: Enable for your language
Copilot might be disabled for specific file types:
// VS Code settings.json
{
"github.copilot.enable": {
"*": true,
"markdown": true,
"plaintext": true,
"yaml": true
}
}
Fix 5: Check output panel for errors
View β Output β Select "GitHub Copilot" from dropdown
Common errors:
401 Unauthorizedβ re-authenticate (Fix 2)Network errorβ check internet, proxy settingsRate limitedβ wait a few minutes
Fix 6: Extension version conflict
# Disable and re-enable
Cmd/Ctrl + Shift + P β "Extensions: Disable All Extensions"
# Re-enable only GitHub Copilot
# Test if it works
# Re-enable other extensions one by one
Known conflicts: other AI extensions (Continue.dev, Cody, Tabnine), some language servers.
Fix 7: Proxy/firewall issues
If youβre behind a corporate proxy:
// VS Code settings.json
{
"http.proxy": "http://proxy.company.com:8080",
"github.copilot.advanced": {
"authProvider": "github"
}
}
Copilot needs access to api.github.com and copilot-proxy.githubusercontent.com.
Fix 8: Chat not working
Copilot Chat is a separate feature from autocomplete:
- Make sure you have the βGitHub Copilot Chatβ extension installed (separate from βGitHub Copilotβ)
- Your plan must include Chat (all paid plans do, Free has limits)
- Try:
Cmd/Ctrl + Shift + P β "GitHub Copilot Chat: Reset Chat"
Copilot alternatives
If Copilot keeps having issues, consider:
| Alternative | Price | Advantage |
|---|---|---|
| Cursor | $20/mo | Better AI, full IDE |
| Continue.dev | Free | Open source, any model |
| Claude Code | $20/mo | Best for complex tasks |
| Aider | Free | Terminal, open source |
Related: GitHub Copilot vs Cursor Β· GitHub Copilot One-Week Review Β· Continue.dev vs Cursor vs Copilot Β· Best AI Coding Tools Β· Free vs Paid AI Coding Tools