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 3be19b2 commit 3ed0ea1Copy full SHA for 3ed0ea1
src/annotations/lineAnnotationController.ts
@@ -153,12 +153,22 @@ export class LineAnnotationController implements Disposable {
153
154
const cfg = Container.config.currentLine;
155
if (this.suspended) {
156
+ if (cc) {
157
+ cc.exitDetails = ` ${GlyphChars.Dot} Skipped because suspended`;
158
+ }
159
+
160
this.clear(editor);
161
return;
162
}
163
164
const trackedDocument = await Container.tracker.getOrAdd(editor.document);
165
if (!trackedDocument.isBlameable && this.suspended) {
166
167
+ cc.exitDetails = ` ${GlyphChars.Dot} Skipped because ${
168
+ this.suspended ? 'suspended' : `document(${trackedDocument.uri.toString(true)}) is not blameable`
169
+ }`;
170
171
172
173
174
0 commit comments