From f67f0d72688679267c4040c5f6aa8c493067704a Mon Sep 17 00:00:00 2001 From: Phillip Hellewell Date: Tue, 21 Mar 2023 08:48:25 -0600 Subject: [ruby/reline] Add key bindings for PgUp and PgDn (https://github.com/ruby/reline/pull/509) * Add key bindings for PgUp, PgDn * Match behavior of readline 8.2 In the latest readline (8.2), page-up and page-down are bound to history-search-backward and history-search-forward by default. We would like reline to have the same default behavior. --- lib/reline/ansi.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/reline') diff --git a/lib/reline/ansi.rb b/lib/reline/ansi.rb index 42a3913387..06ea9efd09 100644 --- a/lib/reline/ansi.rb +++ b/lib/reline/ansi.rb @@ -8,6 +8,8 @@ class Reline::ANSI 'khome' => :ed_move_to_beg, 'kend' => :ed_move_to_end, 'kdch1' => :key_delete, + 'kpp' => :ed_search_prev_history, + 'knp' => :ed_search_next_history, 'kcuu1' => :ed_prev_history, 'kcud1' => :ed_next_history, 'kcuf1' => :ed_next_char, -- cgit v1.2.3