The `applyEdit` field should be optional in `WorkspaceClientCapabilities` by the LSP spec and some clients don't populate it in requests Closes #4541
13 lines
383 B
Text
13 lines
383 B
Text
import Lean.Data.Lsp
|
|
open IO Lean Lsp
|
|
|
|
def main : IO Unit := do
|
|
Ipc.runWith (←IO.appPath) #["--server"] do
|
|
let hIn ← Ipc.stdin
|
|
hIn.write (←FS.readBinFile "init_zed_0_150_4.log")
|
|
hIn.flush
|
|
let initResp ← Ipc.readResponseAs 0 InitializeResult
|
|
Ipc.writeNotification ⟨"initialized", InitializedParams.mk⟩
|
|
|
|
Ipc.shutdown 1
|
|
discard Ipc.waitForExit
|