| # Generated by roxygen2: do not edit by hand | # Generated by roxygen2: do not edit by hand | ||||
| export(regex_gadget) | |||||
| export(regexplain_cheatsheet) | export(regexplain_cheatsheet) | ||||
| export(regexplain_file) | export(regexplain_file) | ||||
| export(regexplain_gadget) | export(regexplain_gadget) |
| * Rewrote regexp-matching internals, the RStudio addin can now display global | * Rewrote regexp-matching internals, the RStudio addin can now display global | ||||
| regexp matches. | regexp matches. | ||||
| * All app-related functions are now prefixed with `regexplain_`. In particular, | |||||
| `regex_gadget()` was renamed in favor of `regexplain_gadget()`. | |||||
| * `regexplain_gadget()` accepts both `text` and `pattern` arguments, so you can | * `regexplain_gadget()` accepts both `text` and `pattern` arguments, so you can | ||||
| easily load text or regular expressions from your R session into the gadget. | easily load text or regular expressions from your R session into the gadget. | ||||
| If you're working with designing a regular expression, this lets you move | If you're working with designing a regular expression, this lets you move |
| #' Deprecated or renamed functions | |||||
| #' | |||||
| #' These functions in regexplain have been deprecated or renamed. | |||||
| #' | |||||
| #' @param ... Arguments passed to the new or renamed functions. | |||||
| #' @return The result of the new or renamed function. | |||||
| #' @name regexplain-deprecated | |||||
| NULL | |||||
| #' @description | |||||
| #' Use [regexplain_gadget()] instead of `regex_gadget()`. | |||||
| #' | |||||
| #' @export | |||||
| #' @keywords internal | |||||
| #' @rdname regexplain-deprecated | |||||
| regex_gadget <- function(...) { | |||||
| .Deprecated(msg = "regex_gadget() was renamed. Please use `regexplain_gadget()` instead.") | |||||
| regexplain_gadget(...) | |||||
| } |