summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/lsp/completion_request_response_empty.json
blob: 9ece16e909606dbe39a35c663da9fdccdc287c45 (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
50
51
{
  "isIncomplete": false,
  "items": [
    {
      "label": ".",
      "kind": 19,
      "detail": "(local)",
      "sortText": "1",
      "insertText": ".",
      "commitCharacters": [
        "\"",
        "'"
      ]
    },
    {
      "label": "..",
      "kind": 19,
      "detail": "(local)",
      "sortText": "1",
      "insertText": "..",
      "commitCharacters": [
        "\"",
        "'"
      ]
    },
    {
      "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"
      },
      "commitCharacters": [
        "\"",
        "'",
        "/"
      ]
    }
  ]
}