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",
@@ -14134,16 +14108,42 @@
14134
14108
"when": "resource in gitlens:tabs:blameable && resource not in gitlens:tabs:annotated && !gitlens:window:annotated && config.gitlens.menus.editorGroup.blame && !config.gitlens.fileAnnotations.command",
14135
14109
"group": "navigation@100"
14136
14110
},
14111
+
{
14112
+
"command": "gitlens.diffWithPrevious",
14113
+
"when": "resource in gitlens:tabs:tracked && config.gitlens.menus.editorGroup.compare",
14114
+
"group": "navigation@97",
14115
+
"alt": "gitlens.diffWithRevision"
14116
+
},
14117
+
{
14118
+
"command": "gitlens.showQuickRevisionDetails",
14119
+
"when": "resource in gitlens:tabs:tracked && config.gitlens.menus.editorGroup.compare",
14120
+
"group": "navigation@98"
14121
+
},
14122
+
{
14123
+
"command": "gitlens.diffWithNext",
14124
+
"when": "resource in gitlens:tabs:tracked && config.gitlens.menus.editorGroup.compare",
0 commit comments