What's the problem
The Tab key conflicts with the text editor’s Tab character when using Copilot’s “Next Edit Suggestion(NES)” feature.
What's the expected result
Pressing the Tab key should accept the NES suggestion.
How to reproduce
Press Tab when an NES suggestion appears.
Method to solve
Disable the extension's Tab key binding in keybindings.json:
{
"key": "tab",
"command": "-tab",
"when": "editorTextFocus && !editorReadonly && !editorTabMovesFocus"
}