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
Add settings to control the icons used in Issues and PR tree views
Implements the feature request #6641.
Both tree views support an icon mode of `author` (default), `state`, or `generic`.
`author` follows the existing logic prior to this setting, where we attempt to fetch a rounded avatar. PRs fall back to a GitHub icon and Issues fall back to state-specific icon.
`state` will always use a state-specific icon that matches the Issue/PR type and state.
`generic` will always use the GitHub icon for a PR and an uncolored issues theme icon for Issues.
Copy file name to clipboardExpand all lines: package.nls.json
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -152,6 +152,14 @@
152
152
"githubPullRequests.showPullRequestNumberInTree.description": "Shows the pull request number in the tree view.",
153
153
"githubPullRequests.labelCreated.description": "Group of labels that you want to add to the pull request automatically. Labels that don't exist in the repository won't be added.",
154
154
"githubPullRequests.labelCreated.label.description": "Each string element is value of label that you want to add",
155
+
"githubPullRequests.treeViewIconMode.description": "Which icon to use in the pull request tree view",
156
+
"githubPullRequests.treeViewIconMode.author": "Show the pull request author avatar",
157
+
"githubPullRequests.treeViewIconMode.state": "Show the pull request type (draft or not) and state (open/closed/merged) as a colored icon",
158
+
"githubPullRequests.treeViewIconMode.generic": "Show a GitHub icon",
159
+
"githubIssues.treeViewIconMode.description": "Which icon to use in the issues tree view",
160
+
"githubIssues.treeViewIconMode.author": "Show the issue author avatar",
161
+
"githubIssues.treeViewIconMode.state": "Show the issue state (open/closed) as a colored icon",
162
+
"githubIssues.treeViewIconMode.generic": "Show an issues icon regardless of state",
155
163
"githubIssues.alwaysPromptForNewIssueRepo.description": "Enabling will always prompt which repository to create an issue in instead of basing off the current open file.",
0 commit comments