Learn R Programming

⚠️There's a newer version (1.10.3) of this package.Take me there.

styler

The goal of styler is to provide non-invasive pretty-printing of R source code while adhering to the tidyverse formatting rules. Support for custom style guides is planned.

You can install the package from GitHub:

# install.packages("remotes")
remotes::install_github("krlmlr/styler")

You can style a simple character vector of code with style_text():

ugly_code <- "a<-function( x){1+1}           "
style_text(ugly_code)
#> a <- function(x) {
#>   1 + 1
#> }

There are a few variants of style_text():

  • style_file() styles .R and/or .Rmd files.
  • style_dir() styles all .R files in a directory.
  • style_pkg() styles the source files of an R package.
  • RStudio Addins for styling the active file, styling the current package and styling the highlighted code region.

You can find more information on the wiki of Google Summer of Code 2017 or check out the pkgdown page.

Copy Link

Version

Install

install.packages('styler')

Monthly Downloads

46,574

Version

0.0-9

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

Lorenz Walthert

Last Published

April 8th, 2024

Functions in styler (0.0-9)

bind_with_child

Bind a parse table with one of its children
calls_sys

Invoke a system command
construct_tree

Construct paths of a tree object given the paths of *-in.R files
construct_vertical

Construct an object of class vertical
apply_ref_indention_one

Applying reference indention of a target token
apply_transformers

Apply transformers to a parse table
character_to_ordered

Convert a character vector to an ordered factor
choose_indention

Choose the indention method for the tokens
enrich_terminals

Enrich flattened parse table
extract_terminals

Extract terminal tokens
find_start_pos_id

Find legit starting value for a new positional id
flatten_operators

Flatten some token in the nested parse table based on operators
create_tree

Create a tree from text
enhance_mapping_special

Enhance the mapping of text to the token "SPECIAL"
get_knitr_pattern

Get chunk pattern
get_parse_data

Obtain robust parse data
nest_parse_data

Nest a flat parse table
add_id_and_short

Add column pos_id and short
add_spaces_or_newlines

Concentrate newlines or spaces in a string
compute_parse_data_nested

Obtain a nested parse table from a character vector
construct_out

Construct *-out.R from a *-in.R
add_token_terminal

Add information about previous / next token to each terminal
apply_ref_indention

Apply reference indention to tokens
combine_children

Combine child and internal child
compute_indent_indices

Compute the indices that need indention
create_parent_id

Create the parent id for a new token
create_pos_ids

Create valid pos_ids if possible
identify_chunks

Identify chunks within Rmd contents
parse_transform_serialize

Parse, transform and serialize text
serialize_parse_data_flattened

Serialize flattened parse data
set_line_break_if_call_is_multi_line

Set line break for multi-line function calls
create_node_from_nested

Create node from nested parse data
create_node_from_nested_root

Convert a nested tibble into a node tree
find_parent

Find the parent of a nest
find_start_line

Get the start right
needs_indention

Check whether indention is needed
assert_text

Assert text to be of positive length and replace it with the empty string otherwise.
assert_tokens

Check token validity
context_to_terminals

Propagate context to terminals
context_towards_terminals

Update the a parse table given outer context
create_style_guide

Create a style guide
initialize_attributes

Enrich parse table with space and line break information
make_transformer

Closure to return a transformer function
math_token_spacing

Specify spacing around math tokens
set_space_between_eq_sub_and_comma

Set space between EQ_SUB and "','"
set_space_between_levels

Set space between levels of nesting
lookup_new_special

lookup which new tokens were created from "SPECIAL"
lookup_tokens

Lookup all tokens that have a unique token-text mapping
prettify_any

Prettify R code in current working directory
regex_for_reindention

Return regex patterns for re-indention
style_pkg

Prettify R source code
create_tokens

Create a terminal token
flatten_operators_one

Flatten one level of nesting with its child
flatten_pd

Flatten a parse table
pd_is

Check whether a parse table corresponds to a a certain expression
style_space_around_math_token

Style spacing around math tokens
transform_and_check

Transform a file an check the result
transform_code

Transform code from R or Rmd files
verify_str_txt

Verify the text of strings
start_comments_with_space

Start comments with a space
style_active_file

Style the active file
styler-package

Non-invasive pretty printing of R code
pd_is_multi_line

Check whether a parse table is a multi-line token
rep_char

Repeat elements of a character vector times times and collapse it
style_file

Style .R and/or .Rmd files
style_guides

Style guides
style_space_around_math_token_one

Set spacing of token to a certain level
style_text

Style a string
visit

Visit'em all
reindention

Specify what is re-indented how
transform_file

Transform a file and output a customized message
transform_files

Transform files with transformer functions
wrap_if_else_multi_line_in_curly

Wrap if-else statement in curly braces
set_spaces

Helper for setting spaces
set_unindention_child

Unindent a child if necessary
tidyverse_style

The tidyverse style
tokenize

Obtain token table from text
needs_indention_one

Check whether indention is needed
set_multi_line

Set the multi-line column
set_regex_indention

Set indention of tokens that match regex
test_collection

Run a collection of tests
update_newlines

Update the newlines attribute
validate_new_pos_ids

Validate sequence of new position ids
update_indention

Update indention information of parse data
update_indention_ref

Update the indention reference
visit_one

Transform a flat parse table with a list of transformers
wrap_expr_in_curly

Wrap an expression in curly braces
style_active_region

Style the highlighted region
style_dir

Prettify arbitrary R code
test_transformer

Transforming test input with a transformer function
testthat_file

Create the path to a test that file
transform_rmd

Transform Rmd contents
unindent_child

Unindent a child
next_non_comment

Find the index of the next non-comment in a parse table
set_args

Set arguments
styler_addins

Stylers for RStudio Addins
wrap_expr_in_expr

Wrap an expression into an expression
add_line_col_to_wrapped_expr

Adds line and col information to an expression from its child
find_block_id

Find the block to which a token belongs
relocate_eq_assign

Relocate the expressions containing the token EQ_ASSIGN within the nested parse table
relocate_eq_assign_nest

Relocate all assignment expressions that contain EQ_ASSIGN within a nest
relocate_eq_assign_one

Relocate an assignment expression
try_transform_as_r_file

Style a file as if it was an .R file
contains_else_expr_that_needs_braces

Check whether an else expression needs braces
extend_if_comment

Find the index of the last comment in the sequence of comments-only tokens after the token that has position pos in pd.
wrap_subexpr_in_curly

Wrap a sub-expression in curly braces
generate_test_samples

Generate a comprehensive collection test cases for comment / insertion interaction Test consist of if / if-else / if-else-if-else caes, paired with various line-break and comment configurations. Used for internal testing.
can_verify_roundtrip

Check whether a roundtip verification can be carried out
verify_roundtrip

Verify the styling