I would like to be able to accept only the next word of a GitHub Copilot suggestion, instead of the full suggestion. Is there a way to do this?
💁♂️ The default keyboard shortcut is now "Cmd/Ctrl + Right Arrow".
For custom keybindings, paste something like the following into the keybindings.json
file (which you can find through the omnibox):
{
"key": "shift+ctrl+right",
"command": "editor.action.inlineSuggest.acceptNextWord",
"when": "inlineSuggestionVisible && !editorReadonly"
}