Add ^G for scroll to end

Requested by @Pwuts.

Apparently nano uses ^G for this.
This commit is contained in:
Juerd Waalboer 2024-12-27 21:22:06 +01:00
parent 8e9b3894f9
commit c3aef1e783

View file

@ -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 {} ],