summaryrefslogtreecommitdiff
path: root/server/src/core
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2019-06-26 20:06:10 +0800
committer最萌小汐 <sumneko@hotmail.com>2019-06-26 20:06:10 +0800
commitf92a71db462b2769eea194143f15ab090b665862 (patch)
treeecd852562a7000e47e028718a27e13477569b6d0 /server/src/core
parent07b47b134c45a2528644bd6a481b8e46b691fdfc (diff)
downloadlua-language-server-f92a71db462b2769eea194143f15ab090b665862.zip
自动完成也支持 EmmyComment
Diffstat (limited to 'server/src/core')
-rw-r--r--server/src/core/completion.lua14
1 files changed, 14 insertions, 0 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