We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe5c6c0 commit 94e704dCopy full SHA for 94e704d
src/resource.ts
@@ -49,7 +49,7 @@ export class Resource implements SourceControlResourceState {
49
private _renameResourceUri?: Uri,
50
private _props?: string,
51
private _remote: boolean = false
52
- ) {}
+ ) { }
53
54
@memoize
55
get resourceUri(): Uri {
@@ -96,6 +96,14 @@ export class Resource implements SourceControlResourceState {
96
"open diff"
97
);
98
99
+ if (!this.remote && this.type == Status.CONFLICTED) {
100
+ return {
101
+ command: "svn.openConflict",
102
+ title: "Open Conflict Merge Resolution",
103
+ arguments: [this]
104
+ };
105
+ }
106
+
107
if (!this.remote && changesLeftClick === "open") {
108
return {
109
command: "svn.openFile",
0 commit comments