Change default rendering width to 80

This commit is contained in:
Christian Muehlhaeuser 2020-05-05 07:28:33 +02:00
parent c5d7aa0155
commit 18fcf68c0f
No known key found for this signature in database
GPG key ID: 3CF9FA45CA1EBB7E

View file

@ -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")
}