ruby-changes:63929
From: aycabta <ko1@a...>
Date: Sat, 5 Dec 2020 03:09:27 +0900 (JST)
Subject: [ruby-changes:63929] e6429ad047 (master): [ruby/reline] Backspace and C-h should be unassigned on vi command mode
https://git.ruby-lang.org/ruby.git/commit/?id=e6429ad047 From e6429ad047a46e19739fceb8fa1a64380cb6ae12 Mon Sep 17 00:00:00 2001 From: aycabta <aycabta@g...> Date: Sun, 1 Nov 2020 20:39:26 +0900 Subject: [ruby/reline] Backspace and C-h should be unassigned on vi command mode https://github.com/ruby/reline/commit/28f4dae020 diff --git a/lib/reline/key_actor/vi_command.rb b/lib/reline/key_actor/vi_command.rb index 54b4a60..98146d2 100644 --- a/lib/reline/key_actor/vi_command.rb +++ b/lib/reline/key_actor/vi_command.rb @@ -17,7 +17,7 @@ class Reline::KeyActor::ViCommand < Reline::KeyActor::Base https://github.com/ruby/ruby/blob/trunk/lib/reline/key_actor/vi_command.rb#L17 # 7 ^G :ed_unassigned, # 8 ^H - :ed_delete_prev_char, + :ed_unassigned, # 9 ^I :ed_unassigned, # 10 ^J @@ -255,7 +255,7 @@ class Reline::KeyActor::ViCommand < Reline::KeyActor::Base https://github.com/ruby/ruby/blob/trunk/lib/reline/key_actor/vi_command.rb#L255 # 126 ~ :vi_change_case, # 127 ^? - :ed_delete_prev_char, + :ed_unassigned, # 128 M-^@ :ed_unassigned, # 129 M-^A -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/