R/nano.R

Defines functions nano

Documented in nano

#' Nano Editor
#'
#' Edit function with the Nano editor.
#'
#' @param \dots passed to \code{fix}.
#'
#' @return Invisible copy of the updated function.
#'
#' @note
#' To make fast edits without invoking Emacs, when working on a remote Linux
#' machine.
#'
#' @importFrom utils fix
#'
#' @export

nano <- function(...)
{
  fix(..., editor="nano")
}
arnima-github/arni documentation built on Oct. 28, 2023, 6:18 p.m.