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
126 words
1 minutes
How to Hide Copilot from Code Actions (Lightbulb Menu)
The Problem
When hovering over code, the lightbulb icon (Code Actions) shows Copilot suggestions mixed in with ESLint fixes, TypeScript refactoring, and other actions.
This makes it harder to find the Code Actions you actually need.
The Solution
The github.copilot.editor.enableCodeActions setting lets you remove Copilot from the Code Actions menu.
How to Configure
- Open Settings with
Ctrl + , - Search for
copilot code actions - Uncheck “GitHub > Copilot > Editor: Enable Code Actions”
Example settings.json
{
"github.copilot.editor.enableCodeActions": false
}The default is true (enabled). Setting it to false removes Copilot suggestions from the lightbulb menu, leaving only the standard Code Actions.
NOTEDisabling this setting does not affect Copilot inline suggestions or Chat. It only changes what appears in the Code Actions menu.
Summary
Set github.copilot.editor.enableCodeActions to false to declutter the lightbulb menu and keep only the Code Actions you need.
How to Hide Copilot from Code Actions (Lightbulb Menu)
https://naonao-na.com/en/posts/vscode-copilot-setting-code-actions/
