Nushell completions pack
This is a system for generating extern def
s (tab-completion) in nu.
Background
The fish shell project has a long, complicated script for parsing man pages to gather completions definitions. Fortunately for us, Fish completions are defined in simple command line arguments, which we parse here and use to generate completions for Nu.
Installation and basic usage
-
Download and optionally install this script. For a prebuilt binary, use cargo-binstall...
cargo binstall nu-completion-script
...or if you don't have
cargo-binstall
, download the release from the releases page on Github.You may also build from source using
cargo install
, or cloning the repository and building withcargo install
. See Development Process for instructions. -
Have
fish
installed. -
From a
fish
shell, runfish_update_completions
-
Generate the
nu
definitions.nu-completions ~/.local/share/fish/generated_completions/*.fish
-
Source the definitions
nu-completions --install
Reporting bugs
If an error occurs, please run your command again with -vvvv
, save the logs, and include them when submitting a Github Issue. For example, if an error occurs while running the above command to generate the definitions, run this command instead:
nu-completions -vvvv ~/.local/share/fish/generated_completions/*.fish | save log.json
And include the contents of log.json
within a preformatted block, like this:
```json
{"level":30,"time":1677171831187,"msg":"beginning translation phase"}
{"level":30,"time":1677171831187,"msg":"processing file or directory","file":"../../../.local/share/fish/generated_completions/7z.fish"}
{"level":30,"time":1677171831187,"msg":"processing file","file":"../../../.local/share/fish/generated_completions/7z.fish"}
{"level":10,"time":1677171831187,"msg":"opened file for processing","file":"\"../../../.local/share/fish/generated_completions/7z.fish\""}
...
{"level":10,"time":1677171833182,"msg":"opened file for processing","file":"\"../../../.local/share/fish/generated_completions/java-openjdk8.fish\""}
{"level":50,"time":1677171833182,"msg":"error parsing shell words","line":"complete -c java-openjdk8 -o 'disablesystemassertions"}
{"level":50,"time":1677171833182,"msg":"failed to process completions at \"../../../.local/share/fish/generated_completions/java-openjdk8.fish\": missing closing quote"}
```
Development state
Since these definitions are auto-generated and incomplete, we need to modify the auto-generated output to provide additional application-specific functions to each definition. In order to provide a consistent workflow which smoothly (we hope) handles upstream man-page updates, these application-specific modifications take the form of a set of patches which are a part of this repository.
Development process
Note: These directions assume you're using Linux, and have
git
andcargo
installed)
- Fork this repository
- Clone your fork and enter the directory
git clone https://github.com/YOUR-GITHUB-USER/nu-completions.git cd nu-completions
- Compile the binary
cargo build --release
cargo binstall nu-completion-script
cargo-binstall
, download the release from the releases page on Github. - Have
fish
installed. - From a
fish
shell, runfish_update_completions
- Generate the
nu
definitions.nu-completions ~/.local/share/fish/generated_completions/*.fish
- Make the changes you want to whichever of the generated files you want.
- Generate a patch (or patches) from your changes
nu-completions --patch-dir=./patches patches generate ~/.local/share/fish/generated_completions/*.fish
- Commit your changes, push them to your fork, and follow the link in your console to submit a pull request for the changes.