From ae0e7b8e4c865df90d950a1b5a7f15c5984406f6 Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Sat, 25 Dec 2021 17:22:40 +0100 Subject: [PATCH] fix: dont wrap for table output --- cli/formatter/formatter.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/formatter/formatter.go b/cli/formatter/formatter.go index 0c32387f..ff6ea25c 100644 --- a/cli/formatter/formatter.go +++ b/cli/formatter/formatter.go @@ -39,6 +39,7 @@ func HumanDuration(timestamp int64) string { // CreateTable prepares a table layout for output. func CreateTable(columns []string) *tablewriter.Table { table := tablewriter.NewWriter(os.Stdout) + table.SetAutoWrapText(false) table.SetHeader(columns) return table }