circo

claudio's IRC oasis
git clone git://git.bitsmanent.org/circo
Log | Files | Refs | README | LICENSE

commit 77cb39bcd8e5bb3413002b2234b1bbfa4a240702
parent a77c495e8f799f68e1016c84b651eb5c99f47c21
Author: Claudio Alessi <smoppy@gmail.com>
Date:   Sat, 22 Jul 2017 17:46:07 +0200

Inadvertently broken key strokes on previous commit. Fixed.

Diffstat:
Mconfig.def.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/config.def.h b/config.def.h @@ -12,10 +12,10 @@ Command commands[] = { static Key keys[] = { /* key function argument */ { CTRL('u'), cmdln_clear, {0} }, - { CTRL('h'), cmdln_chdel, {.i = -1} }, + { KeyBackspace, cmdln_chdel, {.i = -1} }, { CTRL('a'), cmdln_cursor, {.i = 0}}, { CTRL('e'), cmdln_cursor, {.i = 999}}, - { CTRL('l'), cmdln_cursor, {.i = -1}}, + { CTRL('h'), cmdln_cursor, {.i = -1}}, { KeyLeft, cmdln_cursor, {.i = -1}}, { CTRL('l'), cmdln_cursor, {.i = +1}}, { KeyRight, cmdln_cursor, {.i = +1}},