From bf069468b3a4fd97345d7632e94eefe10c0365b3 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 25 Feb 2020 13:26:26 -0500 Subject: [PATCH] oops --- terminal.d | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/terminal.d b/terminal.d index db2e48a..0964f0a 100644 --- a/terminal.d +++ b/terminal.d @@ -3725,9 +3725,13 @@ class LineGetter { terminal.write(item[idx .. $]); auto help = tabCompleteHelp(item); if(help !is null) { + import std.string; + help = help.replace("\t", " ").replace("\n", " ").replace("\r", " "); terminal.write("\t\t"); - int remaining = terminal.width - terminal.cursorX; - remaining -= 2; + int remaining; + if(terminal.cursorX + 2 < terminal.width) { + remaining = terminal.width - terminal.cursorX - 2; + } if(remaining > 8) terminal.write(remaining < help.length ? help[0 .. remaining] : help); }