Skip to content

Commit ff645fd

Browse files
committed
Adds commands to context menu
1 parent 6a64ea3 commit ff645fd

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

contributions.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4726,6 +4726,11 @@
47264726
"when": "viewItem =~ /gitlens:paused-operation\\b/ && !listMultiSelection",
47274727
"group": "inline",
47284728
"order": 3
4729+
},
4730+
{
4731+
"when": "viewItem =~ /gitlens:paused-operation\\b/ && !listMultiSelection",
4732+
"group": "1_gitlens_actions",
4733+
"order": 3
47294734
}
47304735
]
47314736
}
@@ -5868,6 +5873,11 @@
58685873
"when": "viewItem =~ /gitlens:paused-operation:(cherry-pick|merge|rebase)\\b/ && !listMultiSelection",
58695874
"group": "inline",
58705875
"order": 1
5876+
},
5877+
{
5878+
"when": "viewItem =~ /gitlens:paused-operation:(cherry-pick|merge|rebase)\\b/ && !listMultiSelection",
5879+
"group": "1_gitlens_actions",
5880+
"order": 1
58715881
}
58725882
]
58735883
}
@@ -7673,6 +7683,11 @@
76737683
"when": "viewItem =~ /gitlens:paused-operation:rebase\\b/ && !listMultiSelection",
76747684
"group": "inline",
76757685
"order": 4
7686+
},
7687+
{
7688+
"when": "viewItem =~ /gitlens:paused-operation:rebase\\b/ && !listMultiSelection",
7689+
"group": "2_gitlens",
7690+
"order": 1
76767691
}
76777692
]
76787693
}
@@ -10439,6 +10454,11 @@
1043910454
"when": "viewItem =~ /gitlens:paused-operation:(cherry-pick|rebase|revert)\\b/ && !listMultiSelection",
1044010455
"group": "inline",
1044110456
"order": 2
10457+
},
10458+
{
10459+
"when": "viewItem =~ /gitlens:paused-operation:(cherry-pick|rebase|revert)\\b/ && !listMultiSelection",
10460+
"group": "1_gitlens_actions",
10461+
"order": 2
1044210462
}
1044310463
]
1044410464
}

package.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16239,6 +16239,11 @@
1623916239
"when": "viewItem =~ /gitlens:paused-operation\\b/ && !listMultiSelection",
1624016240
"group": "inline@3"
1624116241
},
16242+
{
16243+
"command": "gitlens.views.abortPausedOperation",
16244+
"when": "viewItem =~ /gitlens:paused-operation\\b/ && !listMultiSelection",
16245+
"group": "1_gitlens_actions@3"
16246+
},
1624216247
{
1624316248
"command": "gitlens.views.continuePausedOperation",
1624416249
"when": "viewItem =~ /gitlens:paused-operation:(cherry-pick|merge|rebase)\\b/ && !listMultiSelection",
@@ -16249,11 +16254,26 @@
1624916254
"when": "viewItem =~ /gitlens:paused-operation:(cherry-pick|rebase|revert)\\b/ && !listMultiSelection",
1625016255
"group": "inline@2"
1625116256
},
16257+
{
16258+
"command": "gitlens.views.continuePausedOperation",
16259+
"when": "viewItem =~ /gitlens:paused-operation:(cherry-pick|merge|rebase)\\b/ && !listMultiSelection",
16260+
"group": "1_gitlens_actions@1"
16261+
},
16262+
{
16263+
"command": "gitlens.views.skipPausedOperation",
16264+
"when": "viewItem =~ /gitlens:paused-operation:(cherry-pick|rebase|revert)\\b/ && !listMultiSelection",
16265+
"group": "1_gitlens_actions@2"
16266+
},
1625216267
{
1625316268
"command": "gitlens.views.openPausedOperationInRebaseEditor",
1625416269
"when": "viewItem =~ /gitlens:paused-operation:rebase\\b/ && !listMultiSelection",
1625516270
"group": "inline@4"
1625616271
},
16272+
{
16273+
"command": "gitlens.views.openPausedOperationInRebaseEditor",
16274+
"when": "viewItem =~ /gitlens:paused-operation:rebase\\b/ && !listMultiSelection",
16275+
"group": "2_gitlens@1"
16276+
},
1625716277
{
1625816278
"command": "gitlens.views.openPullRequest",
1625916279
"when": "viewItem =~ /gitlens:pullrequest\\b/ && gitlens:action:openPullRequest > 1",

0 commit comments

Comments
 (0)