├── .gitignore ├── .vscode └── launch.json ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── readme.md └── src ├── main.rs └── regex_.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .DS_Store -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdncred/nu_plugin_regex/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdncred/nu_plugin_regex/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdncred/nu_plugin_regex/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdncred/nu_plugin_regex/HEAD/LICENSE -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdncred/nu_plugin_regex/HEAD/readme.md -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdncred/nu_plugin_regex/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/regex_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdncred/nu_plugin_regex/HEAD/src/regex_.rs --------------------------------------------------------------------------------