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
Copy file name to clipboardExpand all lines: contributions.json
+22-4Lines changed: 22 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -372,11 +372,29 @@
372
372
},
373
373
"gitlens.annotations.nextChange": {
374
374
"label": "Next Change",
375
-
"icon": "$(arrow-down)"
375
+
"icon": "$(arrow-down)",
376
+
"menus": {
377
+
"editor/title": [
378
+
{
379
+
"when": "resource in gitlens:tabs:blameable && (gitlens:window:annotated =~ /computed:changes\\b/ || (resource in gitlens:tabs:annotated:changes && resource not in gitlens:tabs:annotated:computing)) && config.gitlens.menus.editorGroup.blame",
380
+
"group": "navigation",
381
+
"order": -99
382
+
}
383
+
]
384
+
}
376
385
},
377
386
"gitlens.annotations.previousChange": {
378
387
"label": "Previous Change",
379
-
"icon": "$(arrow-up)"
388
+
"icon": "$(arrow-up)",
389
+
"menus": {
390
+
"editor/title": [
391
+
{
392
+
"when": "resource in gitlens:tabs:blameable && (gitlens:window:annotated =~ /computed:changes\\b/ || (resource in gitlens:tabs:annotated:changes && resource not in gitlens:tabs:annotated:computing)) && config.gitlens.menus.editorGroup.blame",
393
+
"group": "navigation",
394
+
"order": -100
395
+
}
396
+
]
397
+
}
380
398
},
381
399
"gitlens.applyPatchFromClipboard": {
382
400
"label": "Apply Copied Changes (Patch)",
@@ -449,7 +467,7 @@
449
467
"menus": {
450
468
"editor/title": [
451
469
{
452
-
"when": "resource in gitlens:tabs:blameable && (gitlens:window:annotated == computed || (resource in gitlens:tabs:annotated && resource not in gitlens:tabs:annotated:computing)) && config.gitlens.menus.editorGroup.blame",
470
+
"when": "resource in gitlens:tabs:blameable && (gitlens:window:annotated =~ /computed\\b/ || (resource in gitlens:tabs:annotated && resource not in gitlens:tabs:annotated:computing)) && config.gitlens.menus.editorGroup.blame",
453
471
"group": "navigation",
454
472
"order": 100
455
473
}
@@ -582,7 +600,7 @@
582
600
"menus": {
583
601
"editor/title": [
584
602
{
585
-
"when": "resource in gitlens:tabs:blameable && (gitlens:window:annotated == computing || resource in gitlens:tabs:annotated:computing) && config.gitlens.menus.editorGroup.blame",
603
+
"when": "resource in gitlens:tabs:blameable && (gitlens:window:annotated =~ /computed\\b/ || resource in gitlens:tabs:annotated:computing) && config.gitlens.menus.editorGroup.blame",
Copy file name to clipboardExpand all lines: package.json
+17-7Lines changed: 17 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -14476,6 +14476,16 @@
14476
14476
}
14477
14477
],
14478
14478
"editor/title": [
14479
+
{
14480
+
"command": "gitlens.annotations.previousChange",
14481
+
"when": "resource in gitlens:tabs:blameable && (gitlens:window:annotated =~ /computed:changes\\b/ || (resource in gitlens:tabs:annotated:changes && resource not in gitlens:tabs:annotated:computing)) && config.gitlens.menus.editorGroup.blame",
14482
+
"group": "navigation@-100"
14483
+
},
14484
+
{
14485
+
"command": "gitlens.annotations.nextChange",
14486
+
"when": "resource in gitlens:tabs:blameable && (gitlens:window:annotated =~ /computed:changes\\b/ || (resource in gitlens:tabs:annotated:changes && resource not in gitlens:tabs:annotated:computing)) && config.gitlens.menus.editorGroup.blame",
"when": "resource in gitlens:tabs:blameable && (gitlens:window:annotated == computed || (resource in gitlens:tabs:annotated && resource not in gitlens:tabs:annotated:computing)) && config.gitlens.menus.editorGroup.blame",
14521
+
"when": "resource in gitlens:tabs:blameable && (gitlens:window:annotated =~ /computed\\b/ || (resource in gitlens:tabs:annotated && resource not in gitlens:tabs:annotated:computing)) && config.gitlens.menus.editorGroup.blame",
14507
14522
"group": "navigation@100"
14508
14523
},
14509
14524
{
14510
14525
"command": "gitlens.computingFileAnnotations",
14511
-
"when": "resource in gitlens:tabs:blameable && (gitlens:window:annotated == computing || resource in gitlens:tabs:annotated:computing) && config.gitlens.menus.editorGroup.blame",
14526
+
"when": "resource in gitlens:tabs:blameable && (gitlens:window:annotated =~ /computed\\b/ || resource in gitlens:tabs:annotated:computing) && config.gitlens.menus.editorGroup.blame",
0 commit comments