From 1b6564f20995a268d455ff149e6aaff26a07ee0c Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Thu, 26 Feb 2015 16:06:19 +0100 Subject: [PATCH] docs: fix HTML / table param with awful/widget/tasklist.lua --- lib/awful/widget/tasklist.lua.in | 37 ++++++++++++++++---------------- 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/lib/awful/widget/tasklist.lua.in b/lib/awful/widget/tasklist.lua.in index 7eef4dab2..fbf150754 100644 --- a/lib/awful/widget/tasklist.lua.in +++ b/lib/awful/widget/tasklist.lua.in @@ -123,25 +123,24 @@ end -- @param buttons A table with buttons binding to set. -- @param style The style overrides default theme. -- @param update_function Optional function to create a tag widget on each --- update. @see awful.widget.common. --- @param base_widget Optional container widget for tag widgets. Default --- is wibox.layout.flex.horizontal(). --- +-- update. See `awful.widget.common.list_update`. +-- @tparam table base_widget Optional container widget for tag widgets. Default +-- is `wibox.layout.flex.horizontal`. +-- @param base_widget.bg_normal The background color for unfocused client. +-- @param base_widget.bg_normal The background color for unfocused client. +-- @param base_widget.fg_normal The foreground color for unfocused client. +-- @param base_widget.bg_focus The background color for focused client. +-- @param base_widget.fg_focus The foreground color for focused client. +-- @param base_widget.bg_urgent The background color for urgent clients. +-- @param base_widget.fg_urgent The foreground color for urgent clients. +-- @param base_widget.bg_minimize The background color for minimized clients. +-- @param base_widget.fg_minimize The foreground color for minimized clients. +-- @param base_widget.floating Symbol to use for floating clients. +-- @param base_widget.ontop Symbol to use for ontop clients. +-- @param base_widget.maximized Symbol to use for clients that have been maximized (vertically and horizontally). +-- @param base_widget.maximized_horizontal Symbol to use for clients that have been horizontally maximized. +-- @param base_widget.maximized_vertical Symbol to use for clients that have been vertically maximized. +-- @param base_widget.font The font. function tasklist.new(screen, filter, buttons, style, update_function, base_widget) local uf = update_function or common.list_update local w = base_widget or flex.horizontal()