I’m using copilot.
I need to use option + [, to get another suggestions from copilot.
But on my M1 PRO, if I press option + [, ‘ or " comes out.
Is there any way to modify this?
In order to use other suggestions in copilot, I changed the shortcut corresponding to option + [ in vscode.
option + [ pressing, I get ‘ or "..
2
Answers
In the CoPilot docs, see for Visual Studio Code "Keyboard shortcuts for GitHub Copilot". Note the command names.
To customize the key binding in VS Code, open Keyboard Shortcuts (cmd-k cmd-s) and search for
editor.action.inlineSuggest.showNext
, which is the command name for "Show next inline suggestion". Double-click to change the key binding.So
option+]
does not work for me, butshift+option+]
does, so I have made this keybinding. To open keyboard.json, presscmd+shift+p
and search for json keyboard.So now I can type
trigger suggestion with
option+
, and useshift+option+[
orshift+option+]
to cycle through suggestions.