From b85f99c70fdbe4da28de76f15158b13bb6bb5a3b Mon Sep 17 00:00:00 2001 From: David Kasakaitis Date: Sat, 18 Jan 2025 11:51:36 +0000 Subject: [PATCH] ref(input): update right binding description Right binding was not describing auto completion suggestion. --- src/textual/widgets/_input.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/textual/widgets/_input.py b/src/textual/widgets/_input.py index 62f8f81d00..962a394deb 100644 --- a/src/textual/widgets/_input.py +++ b/src/textual/widgets/_input.py @@ -84,7 +84,12 @@ class Input(ScrollView): "Move cursor left a word and select", show=False, ), - Binding("right", "cursor_right", "Move cursor right", show=False), + Binding( + "right", + "cursor_right", + "Move cursor right or accept the completion suggestion", + show=False, + ), Binding( "shift+right", "cursor_right(True)",