From c3aef1e7831f2cb10da7e58e7e2279570c01ff0f Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Fri, 27 Dec 2024 21:22:06 +0100 Subject: [PATCH] Add ^G for scroll to end Requested by @Pwuts. Apparently nano uses ^G for this. --- lib/RevBank/TextEditor.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/RevBank/TextEditor.pm b/lib/RevBank/TextEditor.pm index 4213b31..4300287 100644 --- a/lib/RevBank/TextEditor.pm +++ b/lib/RevBank/TextEditor.pm @@ -132,6 +132,7 @@ sub _editor($title, $origdata, $readonly = 0) { [ "\cL" => sub { $cui->draw } ], [ "\c^" => sub { $editor->pos(0) } ], [ "\c_" => sub { $editor->pos(length($editor->get)) } ], + [ "\cG" => sub { $editor->pos(length($editor->get)) } ], [ "\cI" => sub { $editor->add_string(" " x ($tab - ($editor->{-xpos} % $tab))) } ], [ "\cS" => sub { $cui->dialog("Enable flow control :)") } ], [ "\cQ" => sub {} ],