Removes "Show Moves" Menu Entry, as the move detection feature is still very experimental and shouldn't block the diff editor v2 release. (#188906)

This commit is contained in:
Henning Dieterichs
2023-07-26 16:15:51 +05:30
committed by GitHub
parent 9adb70b72b
commit 37eb06d64e
@@ -80,6 +80,10 @@ export class ToggleShowMovedCodeBlocks extends Action2 {
registerAction2(ToggleShowMovedCodeBlocks);
/*
TODO@hediet add this back once move detection is more polished.
Users can still enable this via settings.json (config.diffEditor.experimental.showMoves).
MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
command: {
id: new ToggleShowMovedCodeBlocks().desc.id,
@@ -91,6 +95,7 @@ MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
group: '1_diff',
when: ContextKeyEqualsExpr.create('diffEditorVersion', 2)
});
*/
const diffEditorCategory: ILocalizedString = {
value: localize('diffEditor', 'Diff Editor'),