mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-28 22:19:32 +01:00
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:
@@ -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'),
|
||||
|
||||
Reference in New Issue
Block a user