Browse Source

Ensures we don't show CodeLens if disabled

main
Eric Amodio 2 years ago
parent
commit
474fad812c
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      src/codelens/codeLensProvider.ts

+ 3
- 2
src/codelens/codeLensProvider.ts View File

@ -110,6 +110,9 @@ export class GitCodeLensProvider implements CodeLensProvider {
// Since we can't currently blame edited virtual documents, don't even attempt anything if dirty // Since we can't currently blame edited virtual documents, don't even attempt anything if dirty
if (document.isDirty && isVirtualUri(document.uri)) return []; if (document.isDirty && isVirtualUri(document.uri)) return [];
const cfg = configuration.get('codeLens', document);
if (!cfg.enabled) return [];
const trackedDocument = await this.container.tracker.getOrAdd(document); const trackedDocument = await this.container.tracker.getOrAdd(document);
if (!trackedDocument.isBlameable) return []; if (!trackedDocument.isBlameable) return [];
@ -126,8 +129,6 @@ export class GitCodeLensProvider implements CodeLensProvider {
} }
} }
const cfg = configuration.get('codeLens', document);
let languageScope = cfg.scopesByLanguage?.find(ll => ll.language?.toLowerCase() === document.languageId); let languageScope = cfg.scopesByLanguage?.find(ll => ll.language?.toLowerCase() === document.languageId);
if (languageScope == null) { if (languageScope == null) {
languageScope = { languageScope = {

Loading…
Cancel
Save