diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-05-07 07:52:12 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-05-07 07:52:12 +0200 |
commit | ae91f9047d0722a1438616b60e95b0d67435f555 (patch) | |
tree | c5a89cd988448f2177a0beffe41b80a98e3329a3 | |
parent | 715def65554892b0f75861391823ed0295492e71 (diff) | |
download | xK-ae91f9047d0722a1438616b60e95b0d67435f555.tar.gz xK-ae91f9047d0722a1438616b60e95b0d67435f555.tar.xz xK-ae91f9047d0722a1438616b60e95b0d67435f555.zip |
degesch: fix more libedit weirdness
-rw-r--r-- | degesch.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |