Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/milesmcbain/fnmate
A function definition generator.
https://github.com/milesmcbain/fnmate
functional-programming functions rstats
Last synced: 19 days ago
JSON representation
A function definition generator.
- Host: GitHub
- URL: https://github.com/milesmcbain/fnmate
- Owner: MilesMcBain
- License: other
- Created: 2019-05-02T10:59:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-21T15:54:14.000Z (8 months ago)
- Last Synced: 2024-10-11T18:18:33.559Z (about 1 month ago)
- Topics: functional-programming, functions, rstats
- Language: R
- Homepage:
- Size: 409 KB
- Stars: 96
- Watchers: 6
- Forks: 12
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Travis build status](https://travis-ci.org/MilesMcBain/fnmate.svg?branch=master)](https://travis-ci.org/MilesMcBain/fnmate) [![AppVeyor build status](https://ci.appveyor.com/api/projects/status/github/MilesMcBain/fnmate?branch=master&svg=true)](https://ci.appveyor.com/project/MilesMcBain/fnmate)
# Your fnmate
Type a call to a function and have a definition for that function appear with a keystroke. Lay the planks with your `fnmate` but leave the hammering til after smoko.
![fnmate](inst/media/fnmate.gif)
# Installation
```r
remotes::install_github("milesmcbain/fnmate")
```# Usage
## RStudio
There are three addins that do pretty much what their names suggest:
* `Create function definition file`
* `Create function definition on clipboard`
* `Create function definition below`
- as in appended to the end of the current file. Roxygen is not added in this case.
You can bind these to key combinations of your choosing, see [here](https://rstudio.github.io/rstudioaddins/#keyboard-shorcuts).
The function to be generated is determined by the cursor position. The function call at the most nested scope that encloses the cursor is the one that `fnmate` will generate a definition for.There's another helper addin:
* `Jump to function definition` which gives you a project-wide function definition jump (repository-wide). This is convenient in RStudio and VSCode where jumping to definitions in newly created files that haven't been opened is either not possible (VSCode) or prone to failure (RStudio). This addin depends on some third party software. The default (and best) option looks for `rg` on the PATH for ultra-fast definition grepping - install from [ripgrep repo](https://github.com/BurntSushi/ripgrep).
- Alternately configure the addin to use `git grep` (built into `git`) by setting the option `fnmate_searcher = "git_grep"`## Emacs (ESS)
There is some Emacs lisp you can use to create bindings to `fnmate` contained in the vignette *Using fnmate with ESS*. If you have better ideas about how to distribute ESS 'addins' please let me know!
## VSCode
The RStudio addin is supported in VSCode via `{rstudioapi}` emulation (needs to be turned on with option).
With emulation turned on, configure a keybinding like:
```json
{
"description": "create function defintion",
"key": "ctrl+;",
"command": "r.runCommand",
"when": "editorTextFocus",
"args": "fnmate::rs_fnmate()"
},
{
"description": "jump to function defintion",
"key": "ctrl+shift+;",
"command": "r.runCommand",
"when": "editorTextFocus",
"args": "fnmate::rs_fn_defn_jump()"
}
```## Options
There are some options that affect how `fnmate` works:
* `fnmate_window` determines how many lines above and below the current cursor position `fnmate` will look for a function call that encloses the cursor. Defaults to 20 which probably covers three standard deviations of coding styles.
* `fnmate_folder` is the name of the folder in the current working directory to place created definition files. Defaults to "R".
* `fnmate_placeholder` is the placeholder value that gets put in the function body. Defaults to `NULL`, can be set to any text.
* `fmate_searcher` is the grep tool to use for the function definition jumping helper. Valid options are `"rg"` (ripgrep), and `"git_grep"`.
* `fnmate_quote_jump_regex` can be set to `TRUE` if `Jump to function definiton` is not working due to an error in the command. This seems necessary on MacOS and Linux, depending on the shell version.
You can modify any of these options by running, for example, `options(fnmate_quote_jump_regex = TRUE)` in your R session or in your `.Rprofile`.
# Why does this exist?A lot of the time when I attack a problem I find it helps to cruise over the gnarly bits requiring fiddly code by just claiming a function exits that will magically resolve that fiddly bit for me. After I have a high level solution described, I go back and fill in the blanks. This tool helps me clearly mark out the blanks without breaking my flow on the higher level algorithm.
Recently when developing R workflow plans with [`drake`](https://github.com/ropensci/drake) I've found myself wanting a tool like this so that my sketch of the workflow plan can be built, even though some of the targets are just placeholders.
Also realising this idea in a robust way turned out to be way more challenging than I anticipated and necessitated coopting the R parser and its `parseData` output. So it became a learning exercise.