mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 04:19:13 +00:00
feature: Add a UnindexedProject
notification and a corresponding setting.
This commit is contained in:
parent
ca44e1ee9f
commit
6330b028b3
14 changed files with 262 additions and 8 deletions
|
@ -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[] };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue