doc: fix context doc

This commit is contained in:
Daniel Hahler 2016-11-22 01:15:31 +01:00
parent 71259748d2
commit e1ccfe9168
1 changed files with 16 additions and 15 deletions

View File

@ -157,26 +157,27 @@
* *
* **Contexts are:** * **Contexts are:**
* *
* * *ewmh*: When a client ask for focus (from `X11` events) * * *ewmh*: When a client asks for focus (from `X11` events).
* * *autofocus.check_focus*: When autofocus is enabled(from `awful.autofocus`) * * *autofocus.check_focus*: When autofocus is enabled (from
* `awful.autofocus`).
* * *autofocus.check_focus_tag*: When autofocus is enabled * * *autofocus.check_focus_tag*: When autofocus is enabled
* (from `awful.autofocus`) * (from `awful.autofocus`).
* * *client.jumpto*: When a custom lua extension ask a client to be focused * * *client.jumpto*: When a custom lua extension asks a client to be focused
* (from `client.jump_to`) * (from `client.jump_to`).
* * *client.swap.global_bydirection*: When client swapping require a focus * * *client.swap.global_bydirection*: When client swapping requires a focus
* change (from `awful.client.swap.bydirection`) * change (from `awful.client.swap.bydirection`).
* * *client.movetotag*: When a client is moved to a new tag * * *client.movetotag*: When a client is moved to a new tag
* (from `client.move_to_tag`) * (from `client.move_to_tag`).
* * *client.movetoscreen*: When the client is moved to a new screen * * *client.movetoscreen*: When the client is moved to a new screen
* (from `client.move_to_screen`) * (from `client.move_to_screen`).
* * *client.focus.byidx*: When selecting a client using its index * * *client.focus.byidx*: When selecting a client using its index
* (from `awful.client.focus.byidx`) * (from `awful.client.focus.byidx`).
* * *client.focus.history.previous*: When cycling through history * * *client.focus.history.previous*: When cycling through history
* (from `awful.client.focus.history.previous`) * (from `awful.client.focus.history.previous`).
* * *menu.clients*: When using the build in client menu * * *menu.clients*: When using the builtin client menu
* (from `awful.menu.clients`) * (from `awful.menu.clients`).
* * *rules*: When a new client is focused from a rule (from `awful.rules`) * * *rules*: When a new client is focused from a rule (from `awful.rules`).
* * *screen.focus*: When a screen is focused (from `awful.screen.focus`) * * *screen.focus*: When a screen is focused (from `awful.screen.focus`).
* *
* Default implementation: `awful.ewmh.activate`. * Default implementation: `awful.ewmh.activate`.
* *