From b14b3b9e391d89558575be70f7e1387c9d504794 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Mon, 24 Apr 2023 15:12:51 +0100 Subject: [PATCH] Expand the builtin action list in the docs --- docs/guide/actions.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/guide/actions.md b/docs/guide/actions.md index 02649f57c..6b193df1d 100644 --- a/docs/guide/actions.md +++ b/docs/guide/actions.md @@ -126,9 +126,18 @@ In the previous example if you wanted a link to set the background on the app ra Textual supports the following builtin actions which are defined on the app. +- [action_add_class][textual.app.App.action_add_class] +- [action_back][textual.app.App.action_back] - [action_bell][textual.app.App.action_bell] -- [action_push_screen][textual.app.App.action_push_screen] +- [action_check_bindings][textual.app.App.action_check_bindings] +- [action_focus][textual.app.App.action_focus] +- [action_focus_next][textual.app.App.action_focus_next] +- [action_focus_previous][textual.app.App.action_focus_previous] - [action_pop_screen][textual.app.App.action_pop_screen] -- [action_switch_screen][textual.app.App.action_switch_screen] +- [action_push_screen][textual.app.App.action_push_screen] +- [action_quit][textual.app.App.action_quit] +- [action_remove_class][textual.app.App.action_remove_class] - [action_screenshot][textual.app.App.action_screenshot] +- [action_switch_screen][textual.app.App.action_switch_screen] +- [action_toggle_class][textual.app.App.action_toggle_class] - [action_toggle_dark][textual.app.App.action_toggle_dark]