VS Code comment line keybinding stops working after opening copilot window once #118304
Replies: 4 comments 5 replies
-
|
Hey @taylankasap, is your issue resolved? I'm facing the same issue too. For me, it's on Windows; the expected command More info: |
Beta Was this translation helpful? Give feedback.
-
|
A workaround that works for me (on Windows), to avoid reload VSCode now and then: |
Beta Was this translation helpful? Give feedback.
-
|
Same issue. |
Beta Was this translation helpful? Give feedback.
-
|
This doesn't resolve the source of the issue but if you want to work around this without actually removing the "GitHub Copilot: Accept panel suggestion at the cursor" you can update the when condition to: github.copilot.activated && github.copilot.panelVisible && 1 == '2' This will force the condition to fail 100% of the time. Once the underlying issue is fixed you can then just remove the additional condition and things should go back to working as expected. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Bug
Body
Steps to reproduce:
Ctrl+n)Ctrl+/(editor.action.commentLine keybinding) -> This will create a comment lineCtrl+Enterto open Copilot Suggestions windowCtrl+wto close Copilot Suggestions windowCtrl+/Expected:
editor.action.commentLinecommand should be invokedActual:
github.copilot.acceptCursorPanelSolutiongets invokedFor some reason this when condition returns
true, which causes this issue:github.copilot.activated && github.copilot.panelVisibleThis happened on Linux, but I'm guessing this will happen on Windows too since it also uses Ctrl modifier.
Beta Was this translation helpful? Give feedback.
All reactions