Skip to content

Commit

Permalink
ref(input): update right binding description
Browse files Browse the repository at this point in the history
Right binding was not describing auto completion suggestion.
  • Loading branch information
ddkasa committed Jan 18, 2025
1 parent dc71564 commit b85f99c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/textual/widgets/_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
Expand Down

0 comments on commit b85f99c

Please sign in to comment.