From b0257ca0405eb4e6f1800723f8b8496dea6b750c Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 6 Feb 2017 15:55:30 -0500 Subject: [PATCH] Re-adds context menu for diffLineWithPrevious Re-adds context menu for diffLineWithWorking --- package.json | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index efc6933..c45c2cd 100644 --- a/package.json +++ b/package.json @@ -374,27 +374,35 @@ ], "editor/context": [ { - "command": "gitlens.diffWithWorking", - "alt": "gitlens.diffLineWithWorking", + "command": "gitlens.diffLineWithWorking", "when": "editorTextFocus && config.gitlens.menus.diff.enabled && config.git.enabled", "group": "2_gitlens@1.0" }, { - "command": "gitlens.diffWithPrevious", - "alt": "gitlens.diffLineWithPrevious", + "command": "gitlens.diffLineWithPrevious", "when": "editorTextFocus && config.gitlens.menus.diff.enabled && config.git.enabled", "group": "2_gitlens@1.1" }, + { + "command": "gitlens.diffWithWorking", + "when": "editorTextFocus && config.gitlens.menus.diff.enabled && config.git.enabled", + "group": "3_gitlens@1.0" + }, + { + "command": "gitlens.diffWithPrevious", + "when": "editorTextFocus && config.gitlens.menus.diff.enabled && config.git.enabled", + "group": "3_gitlens@1.1" + }, { "command": "gitlens.showQuickFileHistory", "alt": "gitlens.showFileHistory", "when": "config.git.enabled", - "group": "3_gitlens" + "group": "4_gitlens" }, { "command": "gitlens.toggleBlame", "when": "editorTextFocus && config.git.enabled", - "group": "3_gitlens" + "group": "4_gitlens" } ] },