From e6429ad047a46e19739fceb8fa1a64380cb6ae12 Mon Sep 17 00:00:00 2001 From: aycabta 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 --- lib/reline/key_actor/vi_command.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/reline/key_actor/vi_command.rb b/lib/reline/key_actor/vi_command.rb index 54b4a60383..98146d2f77 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 # 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 # 126 ~ :vi_change_case, # 127 ^? - :ed_delete_prev_char, + :ed_unassigned, # 128 M-^@ :ed_unassigned, # 129 M-^A -- cgit v1.2.3