chore(Type_Info): add `type_fix`es
This commit is contained in:
parent
a2a063882a
commit
c73b33bc24
|
@ -2,16 +2,21 @@ local List = require "pl.List"
|
|||
local Map = require "pl.Map"
|
||||
|
||||
local type_fix <const> : Map<string, string> = Map({
|
||||
awesome = "awesome",
|
||||
Awesome = "awesome",
|
||||
bool = "boolean",
|
||||
client = "Client",
|
||||
client = "client",
|
||||
Client = "client",
|
||||
["gears.shape"] = "Shape",
|
||||
["gears.surface"] = "Surface",
|
||||
image = "Image",
|
||||
int = "integer",
|
||||
screen = "Screen",
|
||||
screen = "screen",
|
||||
Screen = "screen",
|
||||
shape = "Shape",
|
||||
surface = "Surface",
|
||||
tag = "Tag",
|
||||
tag = "tag",
|
||||
Tag = "tag",
|
||||
["wibox.widget"] = "Widget",
|
||||
widget = "Widget",
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue