diff --git a/src/editline.c b/src/editline.c index 6b924fb..69cc9d1 100644 --- a/src/editline.c +++ b/src/editline.c @@ -216,8 +216,10 @@ static void tty_string(char *p) while (*p) { tty_show(*p++); - if ((i++) % tty_cols == 0) - tty_put('\n'); + if ((i++) % tty_cols == 0) { + tty_put(' '); + tty_put('\b'); + } } }