doc: Remove the signal name hack
This commit is contained in:
parent
0a2b05dfbb
commit
c6491e169c
|
@ -1236,7 +1236,7 @@ end
|
|||
-- @tparam[opt=nil] table hints Some hints.
|
||||
|
||||
--- The client marked signal (deprecated).
|
||||
-- @signal .marked
|
||||
-- @signal marked
|
||||
|
||||
--- The client unmarked signal (deprecated).
|
||||
-- @signal unmarked
|
||||
|
|
|
@ -72,13 +72,13 @@ local protected_call = require("gears.protected_call")
|
|||
-- @table timer
|
||||
|
||||
--- When the timer is started.
|
||||
-- @signal .start
|
||||
-- @signal start
|
||||
|
||||
--- When the timer is stopped.
|
||||
-- @signal .stop
|
||||
-- @signal stop
|
||||
|
||||
--- When the timer had a timeout event.
|
||||
-- @signal .timeout
|
||||
-- @signal timeout
|
||||
|
||||
local timer = { mt = {} }
|
||||
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
|
||||
/** When bound mouse button + modifiers are pressed.
|
||||
* @param ... One or more arguments are possible
|
||||
* @signal .press
|
||||
* @signal press
|
||||
*/
|
||||
|
||||
/** When property changes.
|
||||
|
@ -73,7 +73,7 @@
|
|||
|
||||
/** When bound mouse button + modifiers are pressed.
|
||||
* @param ... One or more arguments are possible
|
||||
* @signal .release
|
||||
* @signal release
|
||||
*/
|
||||
|
||||
/** Create a new mouse button bindings.
|
||||
|
|
|
@ -112,21 +112,21 @@
|
|||
*/
|
||||
|
||||
/** When a client gains focus.
|
||||
* @signal .focus
|
||||
* @signal focus
|
||||
*/
|
||||
|
||||
/** Before manage, after unmanage, and when clients swap.
|
||||
* @signal .list
|
||||
* @signal list
|
||||
*/
|
||||
|
||||
/** When 2 clients are swapped
|
||||
* @tparam client client The other client
|
||||
* @tparam boolean is_source If self is the source or the destination of the swap
|
||||
* @signal .swapped
|
||||
* @signal swapped
|
||||
*/
|
||||
|
||||
/** When a new client appears and gets managed by Awesome.
|
||||
* @signal .manage
|
||||
* @signal manage
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -207,29 +207,29 @@
|
|||
*/
|
||||
|
||||
/** When a client gets tagged.
|
||||
* @signal .tagged
|
||||
* @signal tagged
|
||||
* @tag t The tag object.
|
||||
*/
|
||||
|
||||
/** When a client gets unfocused.
|
||||
* @signal .unfocus
|
||||
* @signal unfocus
|
||||
*/
|
||||
|
||||
/**
|
||||
* @signal .unmanage
|
||||
* @signal unmanage
|
||||
*/
|
||||
|
||||
/** When a client gets untagged.
|
||||
* @signal .untagged
|
||||
* @signal untagged
|
||||
* @tag t The tag object.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @signal .raised
|
||||
* @signal raised
|
||||
*/
|
||||
|
||||
/**
|
||||
* @signal .lowered
|
||||
* @signal lowered
|
||||
*/
|
||||
|
||||
/**
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @signal .press
|
||||
* @signal press
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -68,7 +68,7 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @signal .release
|
||||
* @signal release
|
||||
*/
|
||||
|
||||
/** Get the number of instances.
|
||||
|
|
|
@ -71,12 +71,12 @@
|
|||
*/
|
||||
|
||||
/**
|
||||
* @signal .primary_changed
|
||||
* @signal primary_changed
|
||||
*/
|
||||
|
||||
/**
|
||||
* This signal is emitted when a new screen is added to the current setup.
|
||||
* @signal .added
|
||||
* @signal added
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -85,13 +85,13 @@
|
|||
*/
|
||||
|
||||
/** This signal is emitted when the list of available screens changes.
|
||||
* @signal .list
|
||||
* @signal list
|
||||
*/
|
||||
|
||||
/** When 2 screens are swapped
|
||||
* @tparam screen screen The other screen
|
||||
* @tparam boolean is_source If self is the source or the destination of the swap
|
||||
* @signal .swapped
|
||||
* @signal swapped
|
||||
*/
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue