doc: Remove the signal name hack

This commit is contained in:
Emmanuel Lepage Vallee 2018-05-28 14:02:49 -04:00
parent 0a2b05dfbb
commit c6491e169c
6 changed files with 22 additions and 22 deletions

View File

@ -1236,7 +1236,7 @@ end
-- @tparam[opt=nil] table hints Some hints. -- @tparam[opt=nil] table hints Some hints.
--- The client marked signal (deprecated). --- The client marked signal (deprecated).
-- @signal .marked -- @signal marked
--- The client unmarked signal (deprecated). --- The client unmarked signal (deprecated).
-- @signal unmarked -- @signal unmarked

View File

@ -72,13 +72,13 @@ local protected_call = require("gears.protected_call")
-- @table timer -- @table timer
--- When the timer is started. --- When the timer is started.
-- @signal .start -- @signal start
--- When the timer is stopped. --- When the timer is stopped.
-- @signal .stop -- @signal stop
--- When the timer had a timeout event. --- When the timer had a timeout event.
-- @signal .timeout -- @signal timeout
local timer = { mt = {} } local timer = { mt = {} }

View File

@ -60,7 +60,7 @@
/** When bound mouse button + modifiers are pressed. /** When bound mouse button + modifiers are pressed.
* @param ... One or more arguments are possible * @param ... One or more arguments are possible
* @signal .press * @signal press
*/ */
/** When property changes. /** When property changes.
@ -73,7 +73,7 @@
/** When bound mouse button + modifiers are pressed. /** When bound mouse button + modifiers are pressed.
* @param ... One or more arguments are possible * @param ... One or more arguments are possible
* @signal .release * @signal release
*/ */
/** Create a new mouse button bindings. /** Create a new mouse button bindings.

View File

@ -112,21 +112,21 @@
*/ */
/** When a client gains focus. /** When a client gains focus.
* @signal .focus * @signal focus
*/ */
/** Before manage, after unmanage, and when clients swap. /** Before manage, after unmanage, and when clients swap.
* @signal .list * @signal list
*/ */
/** When 2 clients are swapped /** When 2 clients are swapped
* @tparam client client The other client * @tparam client client The other client
* @tparam boolean is_source If self is the source or the destination of the swap * @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. /** When a new client appears and gets managed by Awesome.
* @signal .manage * @signal manage
*/ */
/** /**
@ -207,29 +207,29 @@
*/ */
/** When a client gets tagged. /** When a client gets tagged.
* @signal .tagged * @signal tagged
* @tag t The tag object. * @tag t The tag object.
*/ */
/** When a client gets unfocused. /** When a client gets unfocused.
* @signal .unfocus * @signal unfocus
*/ */
/** /**
* @signal .unmanage * @signal unmanage
*/ */
/** When a client gets untagged. /** When a client gets untagged.
* @signal .untagged * @signal untagged
* @tag t The tag object. * @tag t The tag object.
*/ */
/** /**
* @signal .raised * @signal raised
*/ */
/** /**
* @signal .lowered * @signal lowered
*/ */
/** /**

View File

@ -56,7 +56,7 @@
*/ */
/** /**
* @signal .press * @signal press
*/ */
/** /**
@ -68,7 +68,7 @@
*/ */
/** /**
* @signal .release * @signal release
*/ */
/** Get the number of instances. /** Get the number of instances.

View File

@ -71,12 +71,12 @@
*/ */
/** /**
* @signal .primary_changed * @signal primary_changed
*/ */
/** /**
* This signal is emitted when a new screen is added to the current setup. * 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. /** This signal is emitted when the list of available screens changes.
* @signal .list * @signal list
*/ */
/** When 2 screens are swapped /** When 2 screens are swapped
* @tparam screen screen The other screen * @tparam screen screen The other screen
* @tparam boolean is_source If self is the source or the destination of the swap * @tparam boolean is_source If self is the source or the destination of the swap
* @signal .swapped * @signal swapped
*/ */
/** /**