From ae91f9047d0722a1438616b60e95b0d67435f555 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Thu, 7 May 2015 07:52:12 +0200 Subject: [PATCH] degesch: fix more libedit weirdness --- degesch.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/degesch.c b/degesch.c index e00a224..f6f303b 100644 --- a/degesch.c +++ b/degesch.c @@ -507,6 +507,8 @@ input_start (struct input *self, const char *program_name) // No, editline, it's not supposed to kill the entire line el_set (self->editline, EL_BIND, "^W", "ed-delete-prev-word", NULL); + // Just what are you doing? + el_set (self->editline, EL_BIND, "^U", "vi-kill-line-prev", NULL); app_editline_init (self); self->prompt_shown = 1;