diff --git a/bigdl b/bigdl index ea4c769..5902ddc 100644 Binary files a/bigdl and b/bigdl differ diff --git a/helperFunctions.go b/helperFunctions.go index c3a5f9c..9a0fa57 100644 --- a/helperFunctions.go +++ b/helperFunctions.go @@ -260,7 +260,7 @@ func truncateSprintf(format string, a ...interface{}) string { formatted := fmt.Sprintf(format, a...) // Determine the truncation length & truncate the formatted string if it exceeds the available space - availableSpace := getTerminalWidth() - 3 + availableSpace := getTerminalWidth() - 4 if len(formatted) > availableSpace { formatted = fmt.Sprintf("%s", formatted[:availableSpace]) for strings.HasSuffix(formatted, ",") || strings.HasSuffix(formatted, ".") || strings.HasSuffix(formatted, " ") {