From fb80197bf7ed974bcd97759478e9368aab0e3fa0 Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Tue, 24 Jan 2023 09:13:36 -0600 Subject: [PATCH] Reduce printed output with options * Show maximum 2 line footer for dplyr * Show max 6 entries for str_view() cc @mine-cetinkaya-rundel --- _common.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_common.R b/_common.R index 62c2bec..f779a56 100644 --- a/_common.R +++ b/_common.R @@ -13,7 +13,8 @@ knitr::opts_chunk$set( options( dplyr.print_min = 6, dplyr.print_max = 6, - stringr.view_n = 10, + pillar.max_footer_lines = 2, + stringr.view_n = 6, # Activate crayon output - temporarily disabled for quarto # crayon.enabled = TRUE, pillar.bold = TRUE,