keep: keep - Copy code to clipboard or write a specified file....

View source: R/keep.R

keepR Documentation

keep — Copy code to clipboard or write a specified file. OUTPUT = Copies code to the clipboard or writes out code from an object to a specified file.

Description

Simplifies writing and copying code to clipboard by removing the need to separately create and specify a file connection or to send code to the clipboard.

Usage

keep(x, file = NULL)

Arguments

x

Line(s) of code.

file

Path to write code. If not specified, code is copied to the clipboard.

Value

The code is copied to the clipboard or written to disk.

Author(s)

Matthew K. Lau

Examples

## Not run: 
script <- system.file(
        "example", 
        "simple_script.R", 
        package = "Rclean")
clean.code <- clean(script, "tab.15")
## Copies code to your clipboard
keep(clean.code)
## Saves code to your disk
keep(clean.code, file = "clean_code.R")

## End(Not run)

MKLau/Rclean documentation built on Dec. 6, 2022, 7:18 p.m.