-
-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Shortcut keys conflict with copilot #335
Comments
To support this, IntelliJ and VSCode have the same GitHub Copilot shortcut key. |
Default keybindings of GitHub Copilot for VS Code{
"key": "ctrl+/",
"command": "github.copilot.acceptCursorPanelSolution",
"when": "github.copilot.activated && github.copilot.panelVisible"
},
{
"key": "alt+]",
"command": "github.copilot.nextPanelSolution",
"when": "github.copilot.activated && github.copilot.panelVisible"
},
{
"key": "alt+[",
"command": "github.copilot.previousPanelSolution",
"when": "github.copilot.activated && github.copilot.panelVisible"
},
{
"key": "ctrl+enter",
"command": "github.copilot.generate",
"when": "editorTextFocus && github.copilot.activated && !inInteractiveInput && !interactiveEditorFocused"
},
{
"key": "alt+\",
"command": "editor.action.inlineSuggest.trigger",
"when": "config.github.copilot.inlineSuggest.enable && editorTextFocus && !editorHasSelection && !inlineSuggestionsVisible"
},
{
"key": "ctrl+i",
"mac": "cmd+i",
"command": "github.copilot.terminal.suggestCommand",
"when": "terminalFocus"
} |
Look like these default keybindings are okay, probably the |
kasecato
added a commit
that referenced
this issue
Apr 1, 2024
Fixed #335 that shortcut keys conflict with copilot
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you run this plugin, Copilot's corresponding shortcut key cannot be used.
The text was updated successfully, but these errors were encountered: