Fix whitespace warnings reported by luacheck (#1229)
This commit is contained in:
parent
3fea2db8c5
commit
aeab2a70e9
|
@ -2,7 +2,6 @@ screen[1]._resize {x = 175, width = 128, height = 96} --DOC_NO_USAGE --DOC_HIDE
|
||||||
local awful = {placement = require("awful.placement")} --DOC_HIDE
|
local awful = {placement = require("awful.placement")} --DOC_HIDE
|
||||||
local c = client.gen_fake {x = 220, y = 35, width=40, height=30} --DOC_HIDE
|
local c = client.gen_fake {x = 220, y = 35, width=40, height=30} --DOC_HIDE
|
||||||
|
|
||||||
|
|
||||||
-- Simulate Windows 7 "edge snap" (also called aero snap) feature
|
-- Simulate Windows 7 "edge snap" (also called aero snap) feature
|
||||||
local axis = "vertically"
|
local axis = "vertically"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ end
|
||||||
|
|
||||||
o:connect_signal("my_signal", slot)
|
o:connect_signal("my_signal", slot)
|
||||||
|
|
||||||
-- Emit can be done without argument. In that case, the object will be
|
-- Emitting can be done without arguments. In that case, the object will be
|
||||||
-- implicitly added as an argument.
|
-- implicitly added as an argument.
|
||||||
o:emit_signal "my_signal"
|
o:emit_signal "my_signal"
|
||||||
|
|
||||||
|
|
|
@ -29,28 +29,24 @@ local normal = create_arrow("Normal")
|
||||||
|
|
||||||
local north = wibox.container {
|
local north = wibox.container {
|
||||||
create_arrow("North"),
|
create_arrow("North"),
|
||||||
|
|
||||||
direction = "north",
|
direction = "north",
|
||||||
widget = wibox.container.rotate
|
widget = wibox.container.rotate
|
||||||
}
|
}
|
||||||
|
|
||||||
local south = wibox.container {
|
local south = wibox.container {
|
||||||
create_arrow("South"),
|
create_arrow("South"),
|
||||||
|
|
||||||
direction = "south",
|
direction = "south",
|
||||||
widget = wibox.container.rotate
|
widget = wibox.container.rotate
|
||||||
}
|
}
|
||||||
|
|
||||||
local east = wibox.container {
|
local east = wibox.container {
|
||||||
create_arrow("East"),
|
create_arrow("East"),
|
||||||
|
|
||||||
direction = "east",
|
direction = "east",
|
||||||
widget = wibox.container.rotate
|
widget = wibox.container.rotate
|
||||||
}
|
}
|
||||||
|
|
||||||
local west = wibox.container {
|
local west = wibox.container {
|
||||||
create_arrow("West"),
|
create_arrow("West"),
|
||||||
|
|
||||||
direction = "west",
|
direction = "west",
|
||||||
widget = wibox.container.rotate
|
widget = wibox.container.rotate
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue