Pass featureFlags to onCompletion in language server (#304)

* Pass featureFlags to onCompletion in language server

* Use import type for FeatureFlags in on-completion.ts
This commit is contained in:
eric sciple
2026-01-19 15:11:32 -06:00
committed by GitHub
parent a8bfe74256
commit 5359433879
2 changed files with 6 additions and 2 deletions
+2 -1
View File
@@ -154,7 +154,8 @@ export function initConnection(connection: Connection) {
getDocument(documents, textDocument),
client,
repos.find(repo => textDocument.uri.startsWith(repo.workspaceUri)),
cache
cache,
featureFlags
)
);
});