Merge pull request #1666 from awesomeWM/doc_tag_signal
doc: Add 2 missing tag singals
This commit is contained in:
commit
7818fd3dba
|
@ -1463,6 +1463,20 @@ capi.tag.connect_signal("request::select", tag.object.view_only)
|
||||||
-- @signal property::urgent_count
|
-- @signal property::urgent_count
|
||||||
-- @see client.urgent
|
-- @see client.urgent
|
||||||
|
|
||||||
|
--- Emitted when a screen is removed.
|
||||||
|
-- This can be used to salvage existing tags by moving them to a new
|
||||||
|
-- screen (or creating a virtual screen). By default, there is no
|
||||||
|
-- handler for this request. The tags will be deleted. To prevent
|
||||||
|
-- this, an handler for this request must simply set a new screen
|
||||||
|
-- for the tag.
|
||||||
|
-- @signal request::screen
|
||||||
|
|
||||||
|
--- Emitted after `request::screen` if no new screen has been set.
|
||||||
|
-- The tag will be deleted, this is a last chance to move its clients
|
||||||
|
-- before they are sent to a fallback tag. Connect to `request::screen`
|
||||||
|
-- if you wish to salvage the tag.
|
||||||
|
-- @signal removal-pending
|
||||||
|
|
||||||
capi.screen.connect_signal("tag::history::update", tag.history.update)
|
capi.screen.connect_signal("tag::history::update", tag.history.update)
|
||||||
|
|
||||||
capi.screen.connect_signal("removed", function(s)
|
capi.screen.connect_signal("removed", function(s)
|
||||||
|
|
Loading…
Reference in New Issue