fix: map types for `Layout`
This commit is contained in:
parent
544e3b5c71
commit
93dd7e2e7b
|
@ -11,6 +11,10 @@ local capi_class <const>: { string : Node } = {
|
||||||
name = "Client",
|
name = "Client",
|
||||||
module_path = "awful.client",
|
module_path = "awful.client",
|
||||||
},
|
},
|
||||||
|
Layout = {
|
||||||
|
name = "Layout",
|
||||||
|
module_path = "awful.layout",
|
||||||
|
},
|
||||||
Screen = {
|
Screen = {
|
||||||
name = "Screen",
|
name = "Screen",
|
||||||
module_path = "awful.screen",
|
module_path = "awful.screen",
|
||||||
|
|
|
@ -11,6 +11,7 @@ local type_map <const>: { string : string } = {
|
||||||
["gears.surface"] = "Surface",
|
["gears.surface"] = "Surface",
|
||||||
image = "Image",
|
image = "Image",
|
||||||
int = "integer",
|
int = "integer",
|
||||||
|
layout = "Layout",
|
||||||
screen = "Screen",
|
screen = "Screen",
|
||||||
shape = gears_shape_function,
|
shape = gears_shape_function,
|
||||||
surface = "Surface",
|
surface = "Surface",
|
||||||
|
|
Loading…
Reference in New Issue