Files
outline.nvim/lua/symbols.lua
simrat39 576d84f0b5 Initial commit
* SUPER DUPER BROKEN USELESS STATE RN
2021-04-18 18:17:06 -07:00

41 lines
820 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

M = {}
M.File = ""
M.Module = ""
M.Namespace = ""
M.Package = ""
M.Class = ""
M.Method = "ƒ"
M.Property = ""
M.Field = ""
M.Constructor = ""
M.Enum = ""
M.Interface = ""
M.Function = ""
M.Variable = ""
M.Constant = ""
M.String = "𝓐"
M.Number = "#"
M.Boolean = ""
M.Array = ""
M.Object = "object"
M.Key = "🔐"
M.Null = "NULL"
M.EnumMember = ""
M.Struct = ""
M.Event = "🗲"
M.Operator = "𝒯"
M.kinds = {
"File", "Module", "Namespace", "Package", "Class", "Method", "Property",
"Field", "Constructor", "Enum", "Interface", "Function", "Variable",
"Constant", "String", "Number", "Boolean", "Array", "Object", "Key", "Null",
"EnumMember", "Struct", "Event", "Operator"
}
function M.icon_from_kind(kind)
return M[M.kinds[kind]]
end
return M