Przeglądaj źródła

Ensures we don't show CodeLens if disabled

main
Eric Amodio 2 lat temu
rodzic
commit
474fad812c
1 zmienionych plików z 3 dodań i 2 usunięć
  1. +3
    -2
      src/codelens/codeLensProvider.ts

+ 3
- 2
src/codelens/codeLensProvider.ts Wyświetl plik

@ -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
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);
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);
if (languageScope == null) {
languageScope = {

Ładowanie…
Anuluj
Zapisz