|
1743 | 1743 | "title": "Commits View", |
1744 | 1744 | "order": 110, |
1745 | 1745 | "properties": { |
| 1746 | + "gitlens.views.commits.showStashes": { |
| 1747 | + "type": "boolean", |
| 1748 | + "default": false, |
| 1749 | + "markdownDescription": "Specifies whether to show stashes in the _Commits_ view", |
| 1750 | + "scope": "window", |
| 1751 | + "order": 9 |
| 1752 | + }, |
1746 | 1753 | "gitlens.views.commits.showBranchComparison": { |
1747 | 1754 | "type": [ |
1748 | 1755 | "boolean", |
|
2070 | 2077 | }, |
2071 | 2078 | "gitlens.views.repositories.showStashes": { |
2072 | 2079 | "type": "boolean", |
2073 | | - "default": true, |
| 2080 | + "default": false, |
2074 | 2081 | "markdownDescription": "Specifies whether to show the stashes for each repository in the _Repositories_ view", |
2075 | 2082 | "scope": "window", |
2076 | 2083 | "order": 33 |
|
2192 | 2199 | "scope": "window", |
2193 | 2200 | "order": 90 |
2194 | 2201 | }, |
| 2202 | + "gitlens.views.repositories.branches.showStashes": { |
| 2203 | + "type": "boolean", |
| 2204 | + "default": false, |
| 2205 | + "markdownDescription": "Specifies whether to show stashes in the _Commits_ and _Branches_ sections of the _Repositories_ view", |
| 2206 | + "scope": "window", |
| 2207 | + "order": 95 |
| 2208 | + }, |
2195 | 2209 | "gitlens.views.repositories.branches.showBranchComparison": { |
2196 | 2210 | "type": [ |
2197 | 2211 | "boolean", |
|
2355 | 2369 | "title": "Branches View", |
2356 | 2370 | "order": 170, |
2357 | 2371 | "properties": { |
| 2372 | + "gitlens.views.branches.showStashes": { |
| 2373 | + "type": "boolean", |
| 2374 | + "default": false, |
| 2375 | + "markdownDescription": "Specifies whether to show stashes in the _Branches_ view", |
| 2376 | + "scope": "window", |
| 2377 | + "order": 9 |
| 2378 | + }, |
2358 | 2379 | "gitlens.views.branches.showBranchComparison": { |
2359 | 2380 | "type": [ |
2360 | 2381 | "boolean", |
|
2756 | 2777 | "scope": "resource", |
2757 | 2778 | "order": 12 |
2758 | 2779 | }, |
| 2780 | + "gitlens.views.worktrees.showStashes": { |
| 2781 | + "type": "boolean", |
| 2782 | + "default": false, |
| 2783 | + "markdownDescription": "Specifies whether to show stashes in the _Worktrees_ view", |
| 2784 | + "scope": "window", |
| 2785 | + "order": 19 |
| 2786 | + }, |
2759 | 2787 | "gitlens.views.worktrees.showBranchComparison": { |
2760 | 2788 | "type": [ |
2761 | 2789 | "boolean", |
|
3229 | 3257 | }, |
3230 | 3258 | "gitlens.views.workspaces.showStashes": { |
3231 | 3259 | "type": "boolean", |
3232 | | - "default": true, |
| 3260 | + "default": false, |
3233 | 3261 | "markdownDescription": "Specifies whether to show the stashes for each repository in the _Cloud Workspaces_ view", |
3234 | 3262 | "scope": "window", |
3235 | 3263 | "order": 33 |
|
3337 | 3365 | "scope": "window", |
3338 | 3366 | "order": 90 |
3339 | 3367 | }, |
| 3368 | + "gitlens.views.workspaces.branches.showStashes": { |
| 3369 | + "type": "boolean", |
| 3370 | + "default": false, |
| 3371 | + "markdownDescription": "Specifies whether to show stashes in the _Commits_ and _Branches_ sections of the _Cloud Workspaces_ view", |
| 3372 | + "scope": "window", |
| 3373 | + "order": 9 |
| 3374 | + }, |
3340 | 3375 | "gitlens.views.workspaces.branches.showBranchComparison": { |
3341 | 3376 | "type": [ |
3342 | 3377 | "boolean", |
|
7673 | 7708 | "command": "gitlens.views.branches.setShowBranchPullRequestOff", |
7674 | 7709 | "title": "Hide Branch Pull Requests" |
7675 | 7710 | }, |
| 7711 | + { |
| 7712 | + "command": "gitlens.views.branches.setShowStashesOn", |
| 7713 | + "title": "Show Stashes" |
| 7714 | + }, |
| 7715 | + { |
| 7716 | + "command": "gitlens.views.branches.setShowStashesOff", |
| 7717 | + "title": "Hide Stashes" |
| 7718 | + }, |
7676 | 7719 | { |
7677 | 7720 | "command": "gitlens.views.commitDetails.refresh", |
7678 | 7721 | "title": "Refresh", |
|
7759 | 7802 | "command": "gitlens.views.commits.setShowBranchPullRequestOff", |
7760 | 7803 | "title": "Hide Current Branch Pull Request" |
7761 | 7804 | }, |
| 7805 | + { |
| 7806 | + "command": "gitlens.views.commits.setShowStashesOn", |
| 7807 | + "title": "Show Stashes" |
| 7808 | + }, |
| 7809 | + { |
| 7810 | + "command": "gitlens.views.commits.setShowStashesOff", |
| 7811 | + "title": "Hide Stashes" |
| 7812 | + }, |
7762 | 7813 | { |
7763 | 7814 | "command": "gitlens.views.contributors.copy", |
7764 | 7815 | "title": "Copy" |
|
8804 | 8855 | "command": "gitlens.views.worktrees.setShowBranchPullRequestOff", |
8805 | 8856 | "title": "Hide Branch Pull Requests" |
8806 | 8857 | }, |
| 8858 | + { |
| 8859 | + "command": "gitlens.views.worktrees.setShowStashesOn", |
| 8860 | + "title": "Show Stashes" |
| 8861 | + }, |
| 8862 | + { |
| 8863 | + "command": "gitlens.views.worktrees.setShowStashesOff", |
| 8864 | + "title": "Hide Stashes" |
| 8865 | + }, |
8807 | 8866 | { |
8808 | 8867 | "command": "gitlens.enableDebugLogging", |
8809 | 8868 | "title": "Enable Debug Logging", |
|
11224 | 11283 | "command": "gitlens.views.branches.setShowBranchPullRequestOff", |
11225 | 11284 | "when": "false" |
11226 | 11285 | }, |
| 11286 | + { |
| 11287 | + "command": "gitlens.views.branches.setShowStashesOn", |
| 11288 | + "when": "false" |
| 11289 | + }, |
| 11290 | + { |
| 11291 | + "command": "gitlens.views.branches.setShowStashesOff", |
| 11292 | + "when": "false" |
| 11293 | + }, |
11227 | 11294 | { |
11228 | 11295 | "command": "gitlens.views.commitDetails.refresh", |
11229 | 11296 | "when": "false" |
|
11300 | 11367 | "command": "gitlens.views.commits.setShowBranchPullRequestOff", |
11301 | 11368 | "when": "false" |
11302 | 11369 | }, |
| 11370 | + { |
| 11371 | + "command": "gitlens.views.commits.setShowStashesOn", |
| 11372 | + "when": "false" |
| 11373 | + }, |
| 11374 | + { |
| 11375 | + "command": "gitlens.views.commits.setShowStashesOff", |
| 11376 | + "when": "false" |
| 11377 | + }, |
11303 | 11378 | { |
11304 | 11379 | "command": "gitlens.views.contributors.copy", |
11305 | 11380 | "when": "false" |
|
12196 | 12271 | "command": "gitlens.views.worktrees.setShowBranchPullRequestOff", |
12197 | 12272 | "when": "false" |
12198 | 12273 | }, |
| 12274 | + { |
| 12275 | + "command": "gitlens.views.worktrees.setShowStashesOn", |
| 12276 | + "when": "false" |
| 12277 | + }, |
| 12278 | + { |
| 12279 | + "command": "gitlens.views.worktrees.setShowStashesOff", |
| 12280 | + "when": "false" |
| 12281 | + }, |
12199 | 12282 | { |
12200 | 12283 | "command": "gitlens.graph.switchToEditorLayout", |
12201 | 12284 | "when": "gitlens:enabled && config.gitlens.graph.layout != editor" |
|
13229 | 13312 | "when": "view == gitlens.views.branches && config.gitlens.views.branches.pullRequests.enabled && config.gitlens.views.branches.pullRequests.showForBranches", |
13230 | 13313 | "group": "5_gitlens@2" |
13231 | 13314 | }, |
| 13315 | + { |
| 13316 | + "command": "gitlens.views.branches.setShowStashesOn", |
| 13317 | + "when": "view == gitlens.views.branches && !config.gitlens.views.branches.showStashes && !gitlens:hasVirtualFolders", |
| 13318 | + "group": "5_gitlens@11" |
| 13319 | + }, |
| 13320 | + { |
| 13321 | + "command": "gitlens.views.branches.setShowStashesOff", |
| 13322 | + "when": "view == gitlens.views.branches && config.gitlens.views.branches.showStashes && !gitlens:hasVirtualFolders", |
| 13323 | + "group": "5_gitlens@11" |
| 13324 | + }, |
13232 | 13325 | { |
13233 | 13326 | "command": "gitlens.pushRepositories", |
13234 | 13327 | "when": "gitlens:repos:withRemotes && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders && view == gitlens.views.commits", |
|
13337 | 13430 | { |
13338 | 13431 | "command": "gitlens.views.commits.setShowBranchPullRequestOff", |
13339 | 13432 | "when": "view == gitlens.views.commits && config.gitlens.views.commits.pullRequests.enabled && config.gitlens.views.commits.pullRequests.showForBranches", |
13340 | | - "group": "5_gitlens@4" |
| 13433 | + "group": "5_gitlens@3" |
| 13434 | + }, |
| 13435 | + { |
| 13436 | + "command": "gitlens.views.commits.setShowStashesOn", |
| 13437 | + "when": "view == gitlens.views.commits && !config.gitlens.views.commits.showStashes && !gitlens:hasVirtualFolders", |
| 13438 | + "group": "5_gitlens@11" |
| 13439 | + }, |
| 13440 | + { |
| 13441 | + "command": "gitlens.views.commits.setShowStashesOff", |
| 13442 | + "when": "view == gitlens.views.commits && config.gitlens.views.commits.showStashes && !gitlens:hasVirtualFolders", |
| 13443 | + "group": "5_gitlens@11" |
13341 | 13444 | }, |
13342 | 13445 | { |
13343 | 13446 | "command": "gitlens.showGraph", |
@@ -14289,15 +14392,25 @@ |
14289 | 14392 | "when": "view == gitlens.views.worktrees && config.gitlens.views.worktrees.pullRequests.enabled && config.gitlens.views.worktrees.pullRequests.showForBranches", |
14290 | 14393 | "group": "5_gitlens@2" |
14291 | 14394 | }, |
| 14395 | + { |
| 14396 | + "command": "gitlens.views.worktrees.setShowStashesOn", |
| 14397 | + "when": "view == gitlens.views.worktrees && !config.gitlens.views.worktrees.showStashes && !gitlens:hasVirtualFolders", |
| 14398 | + "group": "5_gitlens@11" |
| 14399 | + }, |
| 14400 | + { |
| 14401 | + "command": "gitlens.views.worktrees.setShowStashesOff", |
| 14402 | + "when": "view == gitlens.views.worktrees && config.gitlens.views.worktrees.showStashes && !gitlens:hasVirtualFolders", |
| 14403 | + "group": "5_gitlens@11" |
| 14404 | + }, |
14292 | 14405 | { |
14293 | 14406 | "command": "gitlens.views.setShowRelativeDateMarkersOn", |
14294 | 14407 | "when": "view =~ /^gitlens\\.views\\.(branches|commits|contributors|fileHistory|lineHistory|remotes|repositories|tags|worktrees)/ && !config.gitlens.views.showRelativeDateMarkers", |
14295 | | - "group": "5_gitlens@3" |
| 14408 | + "group": "5_gitlens@10" |
14296 | 14409 | }, |
14297 | 14410 | { |
14298 | 14411 | "command": "gitlens.views.setShowRelativeDateMarkersOff", |
14299 | 14412 | "when": "view =~ /^gitlens\\.views\\.(branches|commits|contributors|fileHistory|lineHistory|remotes|repositories|tags|worktrees)/ && config.gitlens.views.showRelativeDateMarkers", |
14300 | | - "group": "5_gitlens@3" |
| 14413 | + "group": "5_gitlens@10" |
14301 | 14414 | }, |
14302 | 14415 | { |
14303 | 14416 | "submenu": "gitlens/graph/configuration", |
@@ -17421,12 +17534,12 @@ |
17421 | 17534 | }, |
17422 | 17535 | { |
17423 | 17536 | "command": "gitlens.views.repositories.setShowStashesOn", |
17424 | | - "when": "!config.gitlens.views.repositories.showStashes", |
| 17537 | + "when": "!config.gitlens.views.repositories.showStashes && !gitlens:hasVirtualFolders", |
17425 | 17538 | "group": "2_gitlens@5" |
17426 | 17539 | }, |
17427 | 17540 | { |
17428 | 17541 | "command": "gitlens.views.repositories.setShowStashesOff", |
17429 | | - "when": "config.gitlens.views.repositories.showStashes", |
| 17542 | + "when": "config.gitlens.views.repositories.showStashes && !gitlens:hasVirtualFolders", |
17430 | 17543 | "group": "2_gitlens@5" |
17431 | 17544 | }, |
17432 | 17545 | { |
@@ -17756,12 +17869,12 @@ |
17756 | 17869 | { |
17757 | 17870 | "command": "gitlens.views.setShowRelativeDateMarkersOn", |
17758 | 17871 | "when": "view == gitlens.views.scm.grouped && gitlens:views:scm:grouped:view =~ /(branches|commits|contributors|remotes|repositories|tags|worktrees)/ && !config.gitlens.views.showRelativeDateMarkers", |
17759 | | - "group": "5_gitlens@3" |
| 17872 | + "group": "5_gitlens@10" |
17760 | 17873 | }, |
17761 | 17874 | { |
17762 | 17875 | "command": "gitlens.views.setShowRelativeDateMarkersOff", |
17763 | 17876 | "when": "view == gitlens.views.scm.grouped && gitlens:views:scm:grouped:view =~ /(branches|commits|contributors|remotes|repositories|tags|worktrees)/ && config.gitlens.views.showRelativeDateMarkers", |
17764 | | - "group": "5_gitlens@3" |
| 17877 | + "group": "5_gitlens@10" |
17765 | 17878 | }, |
17766 | 17879 | { |
17767 | 17880 | "command": "gitlens.views.branches.setLayoutToList", |
|
17818 | 17931 | "when": "view == gitlens.views.scm.grouped && gitlens:views:scm:grouped:view == branches && config.gitlens.views.branches.pullRequests.enabled && config.gitlens.views.branches.pullRequests.showForBranches", |
17819 | 17932 | "group": "5_gitlens@2" |
17820 | 17933 | }, |
| 17934 | + { |
| 17935 | + "command": "gitlens.views.branches.setShowStashesOn", |
| 17936 | + "when": "view == gitlens.views.scm.grouped && gitlens:views:scm:grouped:view == branches && !config.gitlens.views.branches.showStashes && !gitlens:hasVirtualFolders", |
| 17937 | + "group": "5_gitlens@11" |
| 17938 | + }, |
| 17939 | + { |
| 17940 | + "command": "gitlens.views.branches.setShowStashesOff", |
| 17941 | + "when": "view == gitlens.views.scm.grouped && gitlens:views:scm:grouped:view == branches && config.gitlens.views.branches.showStashes && !gitlens:hasVirtualFolders", |
| 17942 | + "group": "5_gitlens@11" |
| 17943 | + }, |
17821 | 17944 | { |
17822 | 17945 | "command": "gitlens.showSettingsPage!branches-view", |
17823 | 17946 | "when": "view == gitlens.views.scm.grouped && gitlens:views:scm:grouped:view == branches", |
|
17876 | 17999 | { |
17877 | 18000 | "command": "gitlens.views.commits.setShowBranchPullRequestOff", |
17878 | 18001 | "when": "view == gitlens.views.scm.grouped && gitlens:views:scm:grouped:view == commits && config.gitlens.views.commits.pullRequests.enabled && config.gitlens.views.commits.pullRequests.showForBranches", |
17879 | | - "group": "5_gitlens@4" |
| 18002 | + "group": "5_gitlens@3" |
| 18003 | + }, |
| 18004 | + { |
| 18005 | + "command": "gitlens.views.commits.setShowStashesOn", |
| 18006 | + "when": "view == gitlens.views.scm.grouped && gitlens:views:scm:grouped:view == commits && !config.gitlens.views.commits.showStashes && !gitlens:hasVirtualFolders", |
| 18007 | + "group": "5_gitlens@11" |
| 18008 | + }, |
| 18009 | + { |
| 18010 | + "command": "gitlens.views.commits.setShowStashesOff", |
| 18011 | + "when": "view == gitlens.views.scm.grouped && gitlens:views:scm:grouped:view == commits && config.gitlens.views.commits.showStashes && !gitlens:hasVirtualFolders", |
| 18012 | + "group": "5_gitlens@11" |
17880 | 18013 | }, |
17881 | 18014 | { |
17882 | 18015 | "command": "gitlens.showSettingsPage!commits-view", |
|
18198 | 18331 | "when": "view == gitlens.views.scm.grouped && gitlens:views:scm:grouped:view == worktrees && config.gitlens.views.worktrees.pullRequests.enabled && config.gitlens.views.worktrees.pullRequests.showForBranches", |
18199 | 18332 | "group": "5_gitlens@2" |
18200 | 18333 | }, |
| 18334 | + { |
| 18335 | + "command": "gitlens.views.worktrees.setShowStashesOn", |
| 18336 | + "when": "view == gitlens.views.scm.grouped && gitlens:views:scm:grouped:view == worktrees && !config.gitlens.views.worktrees.showStashes && !gitlens:hasVirtualFolders", |
| 18337 | + "group": "5_gitlens@11" |
| 18338 | + }, |
| 18339 | + { |
| 18340 | + "command": "gitlens.views.worktrees.setShowStashesOff", |
| 18341 | + "when": "view == gitlens.views.scm.grouped && gitlens:views:scm:grouped:view == worktrees && config.gitlens.views.worktrees.showStashes && !gitlens:hasVirtualFolders", |
| 18342 | + "group": "5_gitlens@11" |
| 18343 | + }, |
18201 | 18344 | { |
18202 | 18345 | "command": "gitlens.showSettingsPage!worktrees-view", |
18203 | 18346 | "when": "view == gitlens.views.scm.grouped && gitlens:views:scm:grouped:view == worktrees", |
|
0 commit comments