summaryrefslogtreecommitdiff
path: root/cli/tests/lsp/initialize_request.json
blob: 960420bfd376ecdcce9ec55b978916bac736a4b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "initialize",
  "params": {
    "processId": 0,
    "clientInfo": {
      "name": "test-harness",
      "version": "1.0.0"
    },
    "rootUri": null,
    "capabilities": {
      "textDocument": {
        "synchronization": {
          "dynamicRegistration": true,
          "willSave": true,
          "willSaveWaitUntil": true,
          "didSave": true
        }
      }
    }
  }
}