File tree Expand file tree Collapse file tree 3 files changed +7
-17
lines changed Expand file tree Collapse file tree 3 files changed +7
-17
lines changed Original file line number Diff line number Diff line change 3370
3370
},
3371
3371
"gitlens.plus.logout" : {
3372
3372
"label" : " Sign Out of GitKraken" ,
3373
- "commandPalette" : " true"
3373
+ "commandPalette" : true
3374
3374
},
3375
3375
"gitlens.plus.manage" : {
3376
3376
"label" : " Manage Your Account..." ,
3589
3589
}
3590
3590
},
3591
3591
"gitlens.showAccountView" : {
3592
- "label" : " Show Account on Home"
3592
+ "label" : " Show Account on Home" ,
3593
+ "commandPalette" : true
3593
3594
},
3594
3595
"gitlens.showBranchesView" : {
3595
3596
"label" : " Show Branches View" ,
3724
3725
},
3725
3726
"gitlens.showHomeView" : {
3726
3727
"label" : " Show Home View" ,
3727
- "commandPalette" : " gitlens:enabled "
3728
+ "commandPalette" : true
3728
3729
},
3729
3730
"gitlens.showInCommitGraph" : {
3730
3731
"label" : " Open in Commit Graph" ,
Original file line number Diff line number Diff line change 7104
7104
},
7105
7105
{
7106
7106
"command": "gitlens.showAccountView",
7107
- "title": "Show Account on Home"
7107
+ "title": "Show Account on Home",
7108
+ "category": "GitLens"
7108
7109
},
7109
7110
{
7110
7111
"command": "gitlens.showBranchesView",
10805
10806
"command": "gitlens.plus.login",
10806
10807
"when": "!gitlens:plus"
10807
10808
},
10808
- {
10809
- "command": "gitlens.plus.logout",
10810
- "when": "true"
10811
- },
10812
10809
{
10813
10810
"command": "gitlens.plus.manage",
10814
10811
"when": "gitlens:plus"
10865
10862
"command": "gitlens.shareAsCloudPatch",
10866
10863
"when": "gitlens:enabled && gitlens:gk:organization:drafts:enabled && config.gitlens.cloudPatches.enabled"
10867
10864
},
10868
- {
10869
- "command": "gitlens.showAccountView",
10870
- "when": "false"
10871
- },
10872
10865
{
10873
10866
"command": "gitlens.showBranchesView",
10874
10867
"when": "gitlens:enabled"
10921
10914
"command": "gitlens.showGraphView",
10922
10915
"when": "gitlens:enabled"
10923
10916
},
10924
- {
10925
- "command": "gitlens.showHomeView",
10926
- "when": "gitlens:enabled"
10927
- },
10928
10917
{
10929
10918
"command": "gitlens.showInCommitGraph",
10930
10919
"when": "false"
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ export class ContributesBuilder {
127
127
// Handle command menu locations
128
128
for ( const command of Object . values ( this . commands ) . flat ( ) ) {
129
129
// Handle command palette
130
- if ( command . commandPalette !== true ) {
130
+ if ( command . commandPalette !== true && command . commandPalette !== 'true' ) {
131
131
result . commandPalette ??= [ ] ;
132
132
result . commandPalette . push ( {
133
133
command : command . id ,
You can’t perform that action at this time.
0 commit comments