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
90 words
1 minutes
How to Stop Copilot from Auto-Suggesting Rename Candidates
The Problem
When renaming a variable or function with F2, Copilot automatically suggests rename candidates.
You already have a name in mind, but Copilot’s suggestions get in the way of typing it.
The Solution
The github.copilot.renameSuggestions.triggerAutomatically setting lets you disable automatic rename suggestions.
How to Configure
- Open Settings with
Ctrl + , - Search for
copilot rename - Uncheck “GitHub > Copilot > Rename Suggestions: Trigger Automatically”
Example settings.json
{
"github.copilot.renameSuggestions.triggerAutomatically": false
}The default is true (auto-suggest enabled). Setting it to false stops Copilot from automatically showing rename candidates.
Summary
Set github.copilot.renameSuggestions.triggerAutomatically to false to rename symbols at your own pace without Copilot interference.
How to Stop Copilot from Auto-Suggesting Rename Candidates
https://naonao-na.com/en/posts/vscode-copilot-setting-rename-suggestions/
