pillar
pillar copied to clipboard
Format columns with colour
e.g. ``ℹ Use `print(n = ...)` to see more rows`` . CC @juliasilge.
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action
- on pkgdown [website](https://pillar.r-lib.org/dev/articles/printing.html) (same for release and devel) - on [CRAN](https://cran.r-project.org/web/packages/pillar/vignettes/printing.html), it works as expected
- [x] Resolve all tasks in `cran-comments.md` - [ ] Run `fledge::release()` - [ ] When the package is accepted on CRAN, run `fledge::post_release()`
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action
Theming
Specify color (foreground and background) for: - subtle style (perhaps in the `gray##` syntax) - rowid style - negative numbers - `NA` - groups of three digits Could be implemented...
``` r pillar::pillar(" 1234567890 ", width = 8) #> #> #> " 12345… pillar::pillar(" 1234\n", width = 8) #> #> #> " 1234\… ``` Created on 2022-06-30 by the [reprex...
First three elements only, if there's space. https://github.com/tidyverse/tibble/issues/892#issuecomment-857808385 Closes tidyverse/tibble#892.