├── .github └── workflows │ └── release-please.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md └── src ├── cli_arguments.rs ├── command_collector.rs ├── command_context.rs ├── main.rs ├── nu_item.rs └── predicate_based_selector.rs /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanarye/nu_plugin_skim/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanarye/nu_plugin_skim/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanarye/nu_plugin_skim/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanarye/nu_plugin_skim/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanarye/nu_plugin_skim/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanarye/nu_plugin_skim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanarye/nu_plugin_skim/HEAD/README.md -------------------------------------------------------------------------------- /src/cli_arguments.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanarye/nu_plugin_skim/HEAD/src/cli_arguments.rs -------------------------------------------------------------------------------- /src/command_collector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanarye/nu_plugin_skim/HEAD/src/command_collector.rs -------------------------------------------------------------------------------- /src/command_context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanarye/nu_plugin_skim/HEAD/src/command_context.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanarye/nu_plugin_skim/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/nu_item.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanarye/nu_plugin_skim/HEAD/src/nu_item.rs -------------------------------------------------------------------------------- /src/predicate_based_selector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idanarye/nu_plugin_skim/HEAD/src/predicate_based_selector.rs --------------------------------------------------------------------------------