feature: Add a UnindexedProject notification and a corresponding setting.

This commit is contained in:
David Barsky 2023-11-07 16:26:32 -05:00
parent ca44e1ee9f
commit 6330b028b3
14 changed files with 262 additions and 8 deletions

View file

@ -220,3 +220,9 @@ export type RecursiveMemoryLayoutNode = {
export type RecursiveMemoryLayout = {
nodes: RecursiveMemoryLayoutNode[];
};
export const unindexedProject = new lc.NotificationType<UnindexedProjectParams>(
"rust-analyzer/unindexedProject",
);
export type UnindexedProjectParams = { textDocuments: lc.TextDocumentIdentifier[] };