Skip to content

Commit

Permalink
- Avoid necessity to set "tibble.view_max" option for lazy tables (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Sep 26, 2021
1 parent 80647fe commit 2564271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/options.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ tibble_options <- list2(
#' - `view_max`: Maximum number of rows shown by [view()]
#' if the input is not a data frame, passed on to [head()]. Default: `1000`.
view_max = make_option_impl(
getOption("tibble.view_max", default = tibble_opt("view_max", 1000L))
getOption("tibble.view_max", default = 1000L)
),
)

0 comments on commit 2564271

Please sign in to comment.