summaryrefslogtreecommitdiff
path: root/server/src/core/document_symbol.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2018-12-29 13:04:09 +0800
committer最萌小汐 <sumneko@hotmail.com>2018-12-29 13:04:09 +0800
commitc01603d8bb9578db568c807061ecbca565f2a86c (patch)
treec61e0d53f428d50f01adcf9e1332a1e70f9d9a81 /server/src/core/document_symbol.lua
parent55b75c4e73d5d0697e0cf67f371fb694600292c0 (diff)
downloadlua-language-server-c01603d8bb9578db568c807061ecbca565f2a86c.zip
换个图标
Diffstat (limited to 'server/src/core/document_symbol.lua')
-rw-r--r--server/src/core/document_symbol.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/core/document_symbol.lua b/server/src/core/document_symbol.lua
index 5697daf8..d4462420 100644
--- a/server/src/core/document_symbol.lua
+++ b/server/src/core/document_symbol.lua
@@ -115,7 +115,7 @@ local function buildVar(vm, var)
local hvr = hover(var, var.source)
local kind
if var.source.isIndex then
- kind = SymbolKind.Struct
+ kind = SymbolKind.Class
else
kind = SymbolKind.Variable
end