summaryrefslogtreecommitdiff
path: root/cli/tests/lsp/initialize_request.json
blob: 21e9e3b4f62e6624dd7eed0f32bee42cd2625aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "initialize",
  "params": {
    "processId": 0,
    "clientInfo": {
      "name": "test-harness",
      "version": "1.0.0"
    },
    "rootUri": null,
    "initializationOptions": {
      "enable": true,
      "codeLens": {
        "implementations": true,
        "references": true
      },
      "lint": true,
      "importMap": null,
      "unstable": false
    },
    "capabilities": {
      "textDocument": {
        "codeAction": {
          "codeActionLiteralSupport": {
            "codeActionKind": {
              "valueSet": [
                "quickfix"
              ]
            }
          },
          "isPreferredSupport": true,
          "dataSupport": true,
          "resolveSupport": {
            "properties": [
              "edit"
            ]
          }
        },
        "synchronization": {
          "dynamicRegistration": true,
          "willSave": true,
          "willSaveWaitUntil": true,
          "didSave": true
        }
      }
    }
  }
}