From 004a62e4bf24d3de42ea027479c779609ce43f63 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Fri, 6 Dec 2024 16:06:45 +0000 Subject: [PATCH] fix key table --- src/textual/widgets/_text_area.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/textual/widgets/_text_area.py b/src/textual/widgets/_text_area.py index 7f1af6f6fa..2ff79f1072 100644 --- a/src/textual/widgets/_text_area.py +++ b/src/textual/widgets/_text_area.py @@ -268,7 +268,7 @@ class TextArea(ScrollView): | ctrl+w | Delete from cursor to start of the word. | | delete,ctrl+d | Delete character to the right of cursor. | | ctrl+f | Delete from cursor to end of the word. | - | ctrl+shift+ | Delete the current line. | + | ctrl+shift+x | Delete the current line. | | ctrl+u | Delete from cursor to the start of the line. | | ctrl+k | Delete from cursor to the end of the line. | | f6 | Select the current line. |