39 lines
694 B
Lua
39 lines
694 B
Lua
-- LSP kind symbol map
|
|
return {
|
|
Array = "",
|
|
Boolean = "",
|
|
Class = "",
|
|
Color = "",
|
|
Constant = "",
|
|
Constructor = "",
|
|
Enum = "",
|
|
EnumMember = "",
|
|
Event = "",
|
|
Field = "",
|
|
File = "",
|
|
Folder = "",
|
|
Function = "",
|
|
Interface = "",
|
|
Key = "",
|
|
Keyword = "",
|
|
Method = "",
|
|
Module = "",
|
|
Namespace = "",
|
|
Null = "",
|
|
Number = "",
|
|
Object = "",
|
|
Operator = "",
|
|
Package = "",
|
|
Property = "",
|
|
Reference = "",
|
|
Snippet = "",
|
|
String = "",
|
|
Struct = "",
|
|
Text = "",
|
|
TypeParameter = "",
|
|
Unit = "ﱦ",
|
|
Value = "",
|
|
Variable = "",
|
|
}
|
|
|