Categories
Tags
Agent Mode Astro Auto Accept Automation Camping changelog Chat clear CLI Code Actions Codex compact Component Design Configuration context Context Copilot copy Ctrl+S CUDA Cursor Day Trip delegate diff Dynamic Routing Editor Error Error Fix Error Handling experimental Gemini git GitHub GitHub Copilot Google Hiking Hot Springs init Installation Iwate Prefecture Kobe Linux Localization Mac Mention Meteor Shower Mode Switching model Nara Prefecture NES NoAdapterInstalled Node.js nvm OpenAI params plan PowerShell Prompt props Public Key Authentication Python Redirect Reference Rename research rewind SEO Settings share Shell Execution Shift+Tab Shortcut SSH SSH config ssh-copy-id Stargazing Static Site streamer-mode Student undo Update usage Visual Studio VS Code VS2026 Windows WSL
152 words
1 minutes
How to Disable Copilot Suggestions for Specific Languages in VS Code
The Problem
When writing blog posts in Markdown or taking notes in plain text files, Copilot inline suggestions keep popping up and breaking your concentration.
Copilot is helpful when coding, but when writing natural language, the suggestions are more distracting than useful.
The Solution
The github.copilot.enable setting lets you enable or disable Copilot suggestions per language.
How to Configure
- Open Settings with
Ctrl + , - Search for
github.copilot.enable - Click “Edit in settings.json”
- Set the languages you want to disable to
false
Example settings.json
{
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": false,
"scminput": false
}
}"*": true→ Enabled for all languages by default"plaintext": false→ Disabled for plain text"markdown": false→ Disabled for Markdown"scminput": false→ Disabled for Git commit message input
To disable specific programming languages, use VS Code language identifiers:
{
"github.copilot.enable": {
"*": true,
"yaml": false,
"jsonc": false
}
}Summary
With github.copilot.enable, you can enjoy Copilot suggestions while coding and turn them off when writing prose. Customize it to match your workflow.
How to Disable Copilot Suggestions for Specific Languages in VS Code
https://naonao-na.com/en/posts/vscode-copilot-setting-enable/
