gitextract_d59v6gvb/ ├── .Rbuildignore ├── .github/ │ ├── .gitignore │ ├── CODE_OF_CONDUCT.md │ └── workflows/ │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── aaa-rstudio-detect.R │ ├── aaaa-rematch2.R │ ├── aab-num-ansi-colors.R │ ├── aac-num-ansi-colors.R │ ├── ansi-256.R │ ├── ansi-palette.R │ ├── combine.R │ ├── crayon-package.R │ ├── disposable.R │ ├── enc-utils.R │ ├── has_ansi.R │ ├── has_color.R │ ├── link.R │ ├── machinery.R │ ├── parts.R │ ├── print.R │ ├── show.R │ ├── string.R │ ├── string_operations.R │ ├── style-var.R │ ├── styles.R │ └── utils.R ├── README.md ├── _pkgdown.yml ├── air.toml ├── codecov.yml ├── crayon.Rproj ├── man/ │ ├── chr.Rd │ ├── col_align.Rd │ ├── col_nchar.Rd │ ├── col_strsplit.Rd │ ├── col_substr.Rd │ ├── col_substring.Rd │ ├── combine_styles.Rd │ ├── concat.Rd │ ├── crayon.Rd │ ├── drop_style.Rd │ ├── has_color.Rd │ ├── has_style.Rd │ ├── hyperlink.Rd │ ├── make_style.Rd │ ├── num_ansi_colors.Rd │ ├── num_colors.Rd │ ├── show_ansi_colors.Rd │ ├── start.crayon.Rd │ ├── strip_style.Rd │ ├── style.Rd │ └── styles.Rd ├── tests/ │ ├── testthat/ │ │ ├── helper.R │ │ ├── test-ansi256.R │ │ ├── test-color.R │ │ ├── test-combine.R │ │ ├── test-has-style.R │ │ ├── test-hyperlink.R │ │ ├── test-make-style.R │ │ ├── test-operations.R │ │ ├── test-style-var.R │ │ ├── test-styles.R │ │ ├── test-utils.R │ │ └── test-vectors.R │ └── testthat.R └── tools/ ├── ansi-iterm-palettes.txt └── ansi-palettes.txt