summaryrefslogtreecommitdiff
path: root/server/src/core
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2019-06-26 21:00:59 +0800
committer最萌小汐 <sumneko@hotmail.com>2019-06-26 21:00:59 +0800
commitdef0d9b2a3d70d61217020b82cf0edf913ea1ac6 (patch)
treeecd852562a7000e47e028718a27e13477569b6d0 /server/src/core
parent6fb028ef9e053076170ed03e46b9a4ab5d248e0c (diff)
parentf92a71db462b2769eea194143f15ab090b665862 (diff)
downloadlua-language-server-def0d9b2a3d70d61217020b82cf0edf913ea1ac6.zip
Merge commit 'f92a71db462b2769eea194143f15ab090b665862'
Diffstat (limited to 'server/src/core')
-rw-r--r--server/src/core/completion.lua14
-rw-r--r--server/src/core/hover/hover.lua20
2 files changed, 24 insertions, 10 deletions
diff --git a/server/src/core/completion.lua b/server/src/core/completion.lua
index 34eecb0e..3575622e 100644
--- a/server/src/core/completion.lua
+++ b/server/src/core/completion.lua
@@ -76,6 +76,20 @@ local function getDucumentation(name, value)
value = text,
}
end
+ local lib = value:getLib()
+ if lib then
+ return {
+ kind = 'markdown',
+ value = lib.description,
+ }
+ end
+ local comment = value:getComment()
+ if comment then
+ return {
+ kind = 'markdown',
+ value = comment,
+ }
+ end
return nil
end
diff --git a/server/src/core/hover/hover.lua b/server/src/core/hover/hover.lua
index 25a1bc3b..d78b8add 100644
--- a/server/src/core/hover/hover.lua
+++ b/server/src/core/hover/hover.lua
@@ -191,15 +191,17 @@ local function getValueHover(source, name, value, lib)
valueType = '*' .. valueType
end
- local tip
+ local tips = {}
local literal
if lib then
literal = lib.code or (lib.value and formatLiteral(lib.value))
- tip = lib.description
+ tips[#tips+1] = lib.description
else
literal = value:getLiteral() and formatLiteral(value:getLiteral())
end
+ tips[#tips+1] = value:getComment()
+
local tp
if source:bindLocal() then
tp = 'local'
@@ -214,14 +216,7 @@ local function getValueHover(source, name, value, lib)
end
end
end
- local comment = loc:getComment()
- if comment then
- if tip then
- tip = tip .. '\n\n-------------\n\n' .. comment
- else
- tip = comment
- end
- end
+ tips[#tips+1] = loc:getComment()
elseif source:get 'global' then
tp = 'global'
elseif source:get 'simple' then
@@ -249,6 +244,11 @@ local function getValueHover(source, name, value, lib)
text = ('%s %s: %s = %s'):format(tp, name, valueType, literal)
end
end
+
+ local tip
+ if #tips > 0 then
+ tip = table.concat(tips, '\n\n-------------\n\n')
+ end
return {
label = text,
description = tip,