142 words
1 minutes
How to Auto-Accept Copilot Edit Suggestions in VS Code

The Problem#

When using Copilot Chat to edit code, you have to manually click “Accept” for every suggested change.

Clicking Accept each time slows down your workflow, especially when you trust most of Copilot’s edits.

The Solution#

The chat.editing.autoAcceptDelay setting lets you automatically accept edit suggestions after a specified delay.

How to Configure#

  1. Open Settings with Ctrl + ,
  2. Search for auto accept delay
  3. Enter a number of seconds in “Chat > Editing: Auto Accept Delay”

Example settings.json#

Auto-accept after 5 seconds:

{
  "chat.editing.autoAcceptDelay": 5
}

The default is 0 (no auto-accept). Set a number of seconds, and edit suggestions will be automatically accepted after that delay.

ValueBehavior
0No auto-accept (default)
35Quick accept; glance at changes and move on
1015Time to review while still auto-accepting if you walk away
NOTE

Even after auto-accept, you can undo changes using Chat’s checkpoint feature.

Summary#

Set chat.editing.autoAcceptDelay to a number of seconds to skip the manual Accept step and keep your editing flow smooth.

How to Auto-Accept Copilot Edit Suggestions in VS Code
https://naonao-na.com/en/posts/vscode-copilot-setting-auto-accept-delay/
Author
[object Object]
Published at
2026-04-04