Enhance chat commands: add review command and refine conditions for explain command (#3270)

https://github.com/microsoft/vscode/issues/290828
This commit is contained in:
Johannes Rieken
2026-01-29 12:45:15 +01:00
committed by GitHub
parent ddb16e24b8
commit 5f2f20bf25
+6 -1
View File
@@ -4389,8 +4389,13 @@
"chat/editor/inlineGutter": [
{
"command": "github.copilot.chat.explain",
"when": "!github.copilot.interactiveSession.disabled",
"when": "!github.copilot.interactiveSession.disabled && editor.hasSelection",
"group": "2_chat@2"
},
{
"command": "github.copilot.chat.review",
"when": "!github.copilot.interactiveSession.disabled && editor.hasSelection && config.github.copilot.chat.reviewSelection.enabled",
"group": "2_chat@3"
}
],
"chat/input/editing/sessionToolbar": [