feat: support pull diagnostics in the LSP client (C#, Kotlin, etc) (#23771)

This commit is contained in:
Luke Parker
2026-04-23 09:24:11 +10:00
committed by Aiden Cline
parent cf53e6a1ca
commit 9d325b9849
12 changed files with 1123 additions and 121 deletions
+1 -1
View File
@@ -258,7 +258,7 @@ export const ApplyPatchTool = Tool.define(
for (const change of fileChanges) {
if (change.type === "delete") continue
const target = change.movePath ?? change.filePath
yield* lsp.touchFile(target, true)
yield* lsp.touchFile(target, "document")
}
const diagnostics = yield* lsp.diagnostics()