From 18fcf68c0fb48efd9e84b4504bb953accc12f708 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 5 May 2020 07:28:33 +0200 Subject: [PATCH] Change default rendering width to 80 --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 4a6bf7e..101b86c 100644 --- a/main.go +++ b/main.go @@ -232,5 +232,5 @@ func init() { rootCmd.Flags().BoolVarP(&pager, "pager", "p", false, "display with pager") rootCmd.Flags().StringVarP(&style, "style", "s", "auto", "style name or JSON path") - rootCmd.Flags().UintVarP(&width, "width", "w", 100, "word-wrap at width") + rootCmd.Flags().UintVarP(&width, "width", "w", 80, "word-wrap at width") }