Skip to content

Commit f75f065

Browse files
committed
Fixed file cache
1 parent 7ceb6e8 commit f75f065

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/completion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export class SelectorCompletionItemProvider implements CompletionItemProvider, D
198198
try {
199199
text = (await workspace.fs.readFile(file)).toString();
200200
} catch (error) {
201-
text = "";
201+
text = "n/a";
202202
}
203203

204204
this.files.set(path, text);

0 commit comments

Comments
 (0)