├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── README.md.liquid ├── cargo-generate.toml ├── init.rhai ├── pre.rhai ├── src ├── commands │ ├── mod.rs │ └── {{command_module}}.rs └── main.rs └── test.nu /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .DS_Store -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nu_plugin_template/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nu_plugin_template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nu_plugin_template/HEAD/README.md -------------------------------------------------------------------------------- /README.md.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nu_plugin_template/HEAD/README.md.liquid -------------------------------------------------------------------------------- /cargo-generate.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nu_plugin_template/HEAD/cargo-generate.toml -------------------------------------------------------------------------------- /init.rhai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nu_plugin_template/HEAD/init.rhai -------------------------------------------------------------------------------- /pre.rhai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nu_plugin_template/HEAD/pre.rhai -------------------------------------------------------------------------------- /src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nu_plugin_template/HEAD/src/commands/mod.rs -------------------------------------------------------------------------------- /src/commands/{{command_module}}.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nu_plugin_template/HEAD/src/commands/{{command_module}}.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nu_plugin_template/HEAD/src/main.rs -------------------------------------------------------------------------------- /test.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nushell/nu_plugin_template/HEAD/test.nu --------------------------------------------------------------------------------