diff --git a/language/parser.ts b/language/parser.ts index 3b033b0c..aa816732 100644 --- a/language/parser.ts +++ b/language/parser.ts @@ -138,7 +138,7 @@ export default class Parser { } } - async getDocs(workingUri: string, baseContent?: string, options: ParseOptions = {withIncludes: true, collectReferences: false}): Promise { + async getDocs(workingUri: string, baseContent?: string, options: ParseOptions = {withIncludes: true, collectReferences: true}): Promise { const existingCache = this.getParsedCache(workingUri); if (options.ignoreCache !== true && existingCache) { return existingCache;