summaryrefslogtreecommitdiff
path: root/cli/tests/lsp/completion_request_response_empty.json
blob: 272dfb475603ad44661e60380170c4e97c983092 (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
{
  "isIncomplete": false,
  "items": [
    {
      "label": ".",
      "kind": 19,
      "detail": "(local)",
      "sortText": "1",
      "insertText": "."
    },
    {
      "label": "..",
      "kind": 19,
      "detail": "(local)",
      "sortText": "1",
      "insertText": ".."
    },
    {
      "label": "http://localhost:4545",
      "kind": 19,
      "detail": "(registry)",
      "sortText": "2",
      "textEdit": {
        "range": {
          "start": {
            "line": 0,
            "character": 20
          },
          "end": {
            "line": 0,
            "character": 20
          }
        },
        "newText": "http://localhost:4545"
      }
    }
  ]
}