mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-16 10:58:34 -05:00
Re-adds context menu for diffLineWithPrevious
Re-adds context menu for diffLineWithWorking
This commit is contained in:
20
package.json
20
package.json
@@ -374,27 +374,35 @@
|
|||||||
],
|
],
|
||||||
"editor/context": [
|
"editor/context": [
|
||||||
{
|
{
|
||||||
"command": "gitlens.diffWithWorking",
|
"command": "gitlens.diffLineWithWorking",
|
||||||
"alt": "gitlens.diffLineWithWorking",
|
|
||||||
"when": "editorTextFocus && config.gitlens.menus.diff.enabled && config.git.enabled",
|
"when": "editorTextFocus && config.gitlens.menus.diff.enabled && config.git.enabled",
|
||||||
"group": "2_gitlens@1.0"
|
"group": "2_gitlens@1.0"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command": "gitlens.diffWithPrevious",
|
"command": "gitlens.diffLineWithPrevious",
|
||||||
"alt": "gitlens.diffLineWithPrevious",
|
|
||||||
"when": "editorTextFocus && config.gitlens.menus.diff.enabled && config.git.enabled",
|
"when": "editorTextFocus && config.gitlens.menus.diff.enabled && config.git.enabled",
|
||||||
"group": "2_gitlens@1.1"
|
"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",
|
"command": "gitlens.showQuickFileHistory",
|
||||||
"alt": "gitlens.showFileHistory",
|
"alt": "gitlens.showFileHistory",
|
||||||
"when": "config.git.enabled",
|
"when": "config.git.enabled",
|
||||||
"group": "3_gitlens"
|
"group": "4_gitlens"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command": "gitlens.toggleBlame",
|
"command": "gitlens.toggleBlame",
|
||||||
"when": "editorTextFocus && config.git.enabled",
|
"when": "editorTextFocus && config.git.enabled",
|
||||||
"group": "3_gitlens"
|
"group": "4_gitlens"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user