rxx built-in plugins

These plugins ship with rxx and are written in Rune.

loading the plugins

rxx loads plugins/ from the current directory and the user configuration directory. Add a plugin directory for a run with --plugin-dir (repeat it for multiple directories):

rxx --plugin-dir /path/to/rxx/plugins

For persistent extra directories, set RXX_PLUGIN_PATH in your shell startup file. It accepts a PATH-style list; for example, on macOS or Linux:

export RXX_PLUGIN_PATH="$HOME/src/my-plugins:$HOME/src/more-plugins"

Search order is --plugin-dir directories, RXX_PLUGIN_PATH, local plugins/, then the user configuration plugin directory. The first match for each plugin name wins. See plugin discovery in the API reference for details.

See the scripting guide for writing plugins and the API reference for available functions.