summaryrefslogtreecommitdiff
path: root/lua/mo/kinds.lua
blob: b6d78144d758cf0ada03dba3ae74b687b05aecc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
return {
    Text           = "Text",
    Method         = "Meth",
    Function       = "Func",
    Constructor    = "Cons",
    Field          = "Fld",
    Variable       = "Var",
    Class          = "Cls",
    Interface      = "Ifs",
    Module         = "Mod",
    Property       = "Prop",
    Unit           = "Unit",
    Value          = "Val",
    Enum           = "Enum",
    Keyword        = "Keyw",
    Snippet        = "Snp",
    Color          = "Col",
    File           = "File",
    Reference      = "Ref",
    Folder         = "Fold",
    EnumMember     = "EnMe",
    Constant       = "Cnst",
    Struct         = "Stru",
    Event          = "Ev",
    Operator       = "Op",
    TypeParameter  = "Typ",
}