summaryrefslogtreecommitdiff
path: root/server/src/method/textDocument/hover.lua
blob: 5bb8cbb9fe6c201574fe562ea5a042a9935e1bbf (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
local core = require 'core'

return function (lsp, params)
    local uri = params.textDocument.uri
    local vm, lines = lsp:loadVM(uri)
    if not vm then
        return nil
    end
    -- lua是从1开始的,因此都要+1
    local position = lines:position(params.position.line + 1, params.position.character + 1)

    local source = core.findSource(vm, position)
    if not source then
        return nil
    end

    local hover = core.hover(source, lsp)
    if not hover then
        return nil
    end

    local text = ([[
```lua
%s
```
%s
```lua
%s
```
]]):format(hover.label or '', hover.description or '', hover.enum or '')

    local response = {
        contents = {
            value = text,
            kind  = 'markdown',
        }
    }

    return response
end