You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds AI feedback support for changelog markdown editors
Enables the use of helpful/unhelpful AI feedback buttons in untitled
markdown editors generated by the changelog command. Tracks feedback
context for these documents, updates relevant context keys, and ensures
telemetry compatibility. Also improves feedback instructions in
generated changelogs to encourage user interaction. Updates telemetry
and menu configuration to support this new AI feedback capability for
changelog editors.
(#4449, #4479)
"when": "resource in gitlens:tabs:blameable && resource not in gitlens:tabs:annotated && config.gitlens.menus.editorGroup.blame && config.gitlens.fileAnnotations.command == blame",
@@ -14271,16 +14245,42 @@
14271
14245
"when": "resource in gitlens:tabs:blameable && resource not in gitlens:tabs:annotated && !gitlens:window:annotated && config.gitlens.menus.editorGroup.blame && !config.gitlens.fileAnnotations.command",
14272
14246
"group": "navigation@100"
14273
14247
},
14248
+
{
14249
+
"command": "gitlens.diffWithPrevious",
14250
+
"when": "resource in gitlens:tabs:tracked && config.gitlens.menus.editorGroup.compare",
14251
+
"group": "navigation@97",
14252
+
"alt": "gitlens.diffWithRevision"
14253
+
},
14254
+
{
14255
+
"command": "gitlens.showQuickRevisionDetails",
14256
+
"when": "resource in gitlens:tabs:tracked && config.gitlens.menus.editorGroup.compare",
14257
+
"group": "navigation@98"
14258
+
},
14259
+
{
14260
+
"command": "gitlens.diffWithNext",
14261
+
"when": "resource in gitlens:tabs:tracked && config.gitlens.menus.editorGroup.compare",
0 commit comments