Skip to content

Commit 3e6d0a3

Browse files
Copilotalexr00
andcommitted
Changes before error encountered
Co-authored-by: alexr00 <38270282+alexr00@users.noreply.github.com>
1 parent 7d2f38f commit 3e6d0a3

File tree

4 files changed

+585
-524
lines changed

4 files changed

+585
-524
lines changed

package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,11 @@
311311
"default": false,
312312
"description": "%githubPullRequests.hideViewedFiles.description%"
313313
},
314+
"githubPullRequests.markAsViewedOnOpen": {
315+
"type": "boolean",
316+
"default": false,
317+
"description": "%githubPullRequests.markAsViewedOnOpen.description%"
318+
},
314319
"githubPullRequests.defaultDeletionMethod.selectLocalBranch": {
315320
"type": "boolean",
316321
"default": true,

package.nls.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"githubPullRequests.notifications.description": "If GitHub notifications should be shown to the user.",
3838
"githubPullRequests.fileListLayout.description": "The layout to use when displaying changed files list.",
3939
"githubPullRequests.hideViewedFiles.description": "Hide files that have been marked as viewed in the pull request changes tree.",
40+
"githubPullRequests.markAsViewedOnOpen.description": "Automatically mark files as viewed when opened in the editor.",
4041
"githubPullRequests.defaultDeletionMethod.selectLocalBranch.description": "When true, the option to delete the local branch will be selected by default when deleting a branch from a pull request.",
4142
"githubPullRequests.defaultDeletionMethod.selectRemote.description": "When true, the option to delete the remote will be selected by default when deleting a branch from a pull request.",
4243
"githubPullRequests.terminalLinksHandler.description": "Default handler for terminal links.",

src/common/settingKeys.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export const BRANCH_LIST_TIMEOUT = 'branchListTimeout';
1010
export const USE_REVIEW_MODE = 'useReviewMode';
1111
export const FILE_LIST_LAYOUT = 'fileListLayout';
1212
export const HIDE_VIEWED_FILES = 'hideViewedFiles';
13+
export const MARK_AS_VIEWED_ON_OPEN = 'markAsViewedOnOpen';
1314
export const ASSIGN_TO = 'assignCreated';
1415
export const PUSH_BRANCH = 'pushBranch';
1516
export const IGNORE_PR_BRANCHES = 'ignoredPullRequestBranches';

0 commit comments

Comments
 (0)