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 a9512ce commit 9249408Copy full SHA for 9249408
src/resource.ts
@@ -182,6 +182,8 @@ export class Resource implements SourceControlResourceState {
182
return "I";
183
case Status.MODIFIED:
184
return "M";
185
+ case Status.REPLACED:
186
+ return "R";
187
case Status.UNVERSIONED:
188
return "U";
189
default:
@@ -192,6 +194,7 @@ export class Resource implements SourceControlResourceState {
192
194
get color(): ThemeColor | undefined {
193
195
switch (this.type) {
196
197
198
return new ThemeColor("gitDecoration.modifiedResourceForeground");
199
case Status.DELETED:
200
return new ThemeColor("gitDecoration.deletedResourceForeground");
0 commit comments