Add ^G for scroll to end
Requested by @Pwuts. Apparently nano uses ^G for this.
This commit is contained in:
parent
8e9b3894f9
commit
c3aef1e783
1 changed files with 1 additions and 0 deletions
|
@ -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 {} ],
|
||||
|
|
Loading…
Add table
Reference in a new issue