From 59360719401c5389ca214cda73bc2b97e6e8da35 Mon Sep 17 00:00:00 2001 From: aycabta Date: Mon, 27 Sep 2021 01:14:31 +0900 Subject: [PATCH] ^K is kill-line and ^U is unix-line-discard for inputrc --- lib/reline/line_editor.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/reline/line_editor.rb b/lib/reline/line_editor.rb index 10ff766dcc..71b56b4c3b 100644 --- a/lib/reline/line_editor.rb +++ b/lib/reline/line_editor.rb @@ -2529,6 +2529,7 @@ def finish @rest_height += 1 end end + alias_method :kill_line, :ed_kill_line private def em_kill_line(key) if @byte_pointer > 0 @@ -2539,7 +2540,7 @@ def finish @cursor = 0 end end - alias_method :kill_line, :em_kill_line + alias_method :unix_line_discard, :em_kill_line alias_method :vi_kill_line_prev, :em_kill_line private def em_delete(key)