mirror of
https://github.com/RGBCube/nu_scripts
synced 2025-07-30 21:57:44 +00:00
fix(completions): clean-up (#484)
This commit is contained in:
parent
a3778622cd
commit
ee996ec169
18 changed files with 9 additions and 207 deletions
9
custom-completions/README.md
Normal file
9
custom-completions/README.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
# Custom completions
|
||||
|
||||
This current directory provides custom completions. They can be used by importing their exported commands via:
|
||||
|
||||
```nushell
|
||||
use path/to/<command>/<command>-completions.nu *
|
||||
```
|
||||
|
||||
With `path/to/<command>` being either the relative path of the file to your current working directory or its absolute path.
|
|
@ -1,9 +0,0 @@
|
|||
# ani-cli Custom Completions
|
||||
|
||||
This script provides custom completions for ani-cli. It can be used by importing its exported commands via:
|
||||
|
||||
```
|
||||
use path/to/ani-cli/ani-cli-completions.nu
|
||||
```
|
||||
|
||||
With 'path/to' being either the relative path of the file to your current directory or its absolute path.
|
|
@ -1,12 +0,0 @@
|
|||
# Bitwarden CLI Custom Completions
|
||||
|
||||
This script provides custom completions for the Bitwarden CLI client
|
||||
`bw`.
|
||||
It can be used by importing its exported commands via:
|
||||
|
||||
```
|
||||
use path/to/bitwarden-cli/bitwarden-cli-completions.nu
|
||||
```
|
||||
|
||||
With 'path/to' being either the relative path of the file to your
|
||||
current directory or its absolute path.
|
|
@ -1,9 +0,0 @@
|
|||
# Bottom Custom Completions
|
||||
|
||||
This script provides custom completions for Bottom. It can be used by importing its exported commands via:
|
||||
|
||||
```
|
||||
use path/to/btm/btm-completions.nu
|
||||
```
|
||||
|
||||
With 'path/to' being either the relative path of the file to your current directory or its absolute path.
|
|
@ -1,10 +0,0 @@
|
|||
# Cargo Custom Completions
|
||||
|
||||
This script provides custom completions for cargo.
|
||||
It can be used by importing its exported commands via:
|
||||
|
||||
```
|
||||
use path/to/cargo/cargo-completions.nu *
|
||||
```
|
||||
|
||||
With `path/to` being either the relative path of the file to your current working directory or its absolute path.
|
|
@ -1,10 +0,0 @@
|
|||
# Git Custom Completions
|
||||
|
||||
This script provides custom completions for git.
|
||||
It can be used by importing its exported commands via:
|
||||
|
||||
```
|
||||
use path/to/git/git-completions.nu *
|
||||
```
|
||||
|
||||
With `path/to` being either the relative path of the file to your current working directory or its absolute path.
|
|
@ -1,9 +0,0 @@
|
|||
# Glow Custom Completions
|
||||
|
||||
This script provides custom completions for Glow. It can be used by importing its exported commands via:
|
||||
|
||||
```
|
||||
use path/to/glow/glow-completions.nu
|
||||
```
|
||||
|
||||
With 'path/to' being either the relative path of the file to your current directory or its absolute path.
|
|
@ -1,10 +0,0 @@
|
|||
# Make Custom Completions
|
||||
|
||||
This script provides custom completions for make.
|
||||
It can be used by importing its exported commands via:
|
||||
|
||||
```
|
||||
use path/to/make/make-completions.nu *
|
||||
```
|
||||
|
||||
With `path/to` being either the relative path of the file to your current working directory or its absolute path.
|
|
@ -1,10 +0,0 @@
|
|||
# `nano` custom completions
|
||||
|
||||
This script provides custom completions for `nano`.
|
||||
It can be used by importing its exported commands via:
|
||||
|
||||
```
|
||||
use path/to/nano/nano-completions.nu *
|
||||
```
|
||||
|
||||
With `path/to/` being either the relative path of the file to your current working directory or its absolute path.
|
|
@ -1,11 +0,0 @@
|
|||
# Nix Custom Completions
|
||||
|
||||
This script provides custom completions for the [Nix package manager](https://nixos.org/manual/nix/stable/).
|
||||
It encodes the full set of available subcommands and options.
|
||||
It can be used by importing its exported commands via:
|
||||
|
||||
```
|
||||
use path/to/nix-completions.nu *
|
||||
```
|
||||
|
||||
With `path/to` being either the relative path of the file to your current working directory or its absolute path.
|
|
@ -1,10 +0,0 @@
|
|||
# NPM Custom Completions
|
||||
|
||||
This script provides custom completions for npm.
|
||||
It can be used by importing its exported commands via:
|
||||
|
||||
```
|
||||
use path/to/npm/npm-completions.nu *
|
||||
```
|
||||
|
||||
With `path/to` being either the relative path of the file to your current working directory or its absolute path.
|
|
@ -1,13 +0,0 @@
|
|||
# Pass Custom Completions
|
||||
|
||||
This script provides custom completions for most pass commands. It can be
|
||||
imported with the following command:
|
||||
|
||||
```nu
|
||||
source path/to/pass/pass-completions.nu
|
||||
```
|
||||
|
||||
Where `path/to` is the relative of absolute pass to the pass completions file.
|
||||
|
||||
More information about the pass password manager can be found at
|
||||
https://www.passwordstore.org/.
|
|
@ -1,9 +0,0 @@
|
|||
# Poetry Custom Completions
|
||||
|
||||
This script provides custom completions for [Poetry](https://github.com/python-poetry/poetry). I created this by using the `poetry list` command and then using the `nu_scripts/custom-completions/auto-generate/completions/pyenv.nu` file as a template to format the poetry commands.
|
||||
|
||||
It can be used by importing its exported commands by adding the line below to the config.nu file
|
||||
|
||||
```nu
|
||||
source path/to/custom-completions/poetry/poetry-completions.nu
|
||||
```
|
|
@ -1,9 +0,0 @@
|
|||
# Reflector Custom Completions
|
||||
|
||||
This script provides custom completions for reflector. It can be used by importing its exported commands via:
|
||||
|
||||
```
|
||||
use path/to/reflector-completions.nu *
|
||||
```
|
||||
|
||||
With 'path/to' being either the relative path of the file to your current directory or its absolute path.
|
|
@ -1,47 +0,0 @@
|
|||
# Scoop Custom Completions
|
||||
|
||||
This script provides custom completions for [scoop](https://github.com/ScoopInstaller/Scoop).
|
||||
It can be used by importing its exported commands via:
|
||||
|
||||
```
|
||||
use path/to/scoop/scoop-completions.nu *
|
||||
```
|
||||
|
||||
With `path/to` being either the relative path of the file to your current working directory or its absolute path.
|
||||
|
||||
|
||||
## Command Status
|
||||
|
||||
- `x` means completed
|
||||
- `-` means not completed
|
||||
|
||||
| ? | Command | Summary |
|
||||
|---|------------|------------------------------------------------------------------------------------------------|
|
||||
| - | alias | Manage scoop aliases |
|
||||
| x | bucket | Manage Scoop buckets |
|
||||
| x | cache | Show or clear the download cache |
|
||||
| x | cat | Show content of specified manifest. If available, `bat` will be used to pretty-print the JSON. |
|
||||
| x | checkup | Check for potential problems |
|
||||
| x | cleanup | Cleanup apps by removing old versions |
|
||||
| x | config | Get or set configuration values |
|
||||
| x | create | Create a custom app manifest |
|
||||
| x | depends | List dependencies for an app, in the order they'll be installed |
|
||||
| x | download | Download apps in the cache folder and verify hashes |
|
||||
| x | export | Exports installed apps, buckets (and optionally configs) in JSON format |
|
||||
| - | help | Show help for a command |
|
||||
| x | hold | Hold an app to disable updates |
|
||||
| x | home | Opens the app homepage |
|
||||
| x | import | Imports apps, buckets and configs from a Scoopfile in JSON format |
|
||||
| x | info | Display information about an app |
|
||||
| x | install | Install apps |
|
||||
| x | list | List installed apps |
|
||||
| x | prefix | Returns the path to the specified app |
|
||||
| x | reset | Reset an app to resolve conflicts |
|
||||
| x | search | Search available apps |
|
||||
| - | shim | Manipulate Scoop shims |
|
||||
| x | status | Show status and check for new app versions |
|
||||
| x | unhold | Unhold an app to enable updates |
|
||||
| x | uninstall | Uninstall an app |
|
||||
| x | update | Update apps, or Scoop itself |
|
||||
| x | virustotal | Look for app's hash or url on virustotal.com |
|
||||
| x | which | Locate a shim/executable (similar to 'which' on Linux) |
|
|
@ -1,9 +0,0 @@
|
|||
# Tealdeer Custom Completions
|
||||
|
||||
This script provides custom completions for tealdeer. It can be used by importing its exported commands via:
|
||||
|
||||
```
|
||||
use path/to/tldr/tldr-completions.nu
|
||||
```
|
||||
|
||||
With 'path/to' being either the relative path of the file to your current directory or its absolute path.
|
|
@ -1,10 +0,0 @@
|
|||
# Winget Custom Completions
|
||||
|
||||
This script provides custom completions for winget.
|
||||
It can be used by importing its exported commands via:
|
||||
|
||||
```
|
||||
use path/to/winget/winget-completions.nu *
|
||||
```
|
||||
|
||||
With `path/to` being either the relative path of the file to your current working directory or its absolute path.
|
|
@ -1,10 +0,0 @@
|
|||
# Zellij Custom Completions
|
||||
|
||||
This script provides custom completions for [zellij](https://github.com/zellij-org/zellij).
|
||||
It can be used by importing its exported commands via:
|
||||
|
||||
```
|
||||
use path/to/zellij/zellij-completions.nu *
|
||||
```
|
||||
|
||||
With `path/to` being either the relative path of the file to your current working directory or its absolute path.
|
Loading…
Add table
Add a link
Reference in a new issue