diff --git a/CHANGELOG.md b/CHANGELOG.md index b940064..5431d99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,20 +13,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Manpages: moved to `man/man1/*.1`. - Replace `--no-aliases` with `--no-cmd`. -- Nushell: upgrade minimum supported version to v0.60.0. +- Elvish: upgrade minimum supported version to v0.18.0. +- Nushell: upgrade minimum supported version to v0.61.0. ### Fixed - Bash/Zsh: rename `_z` completion function to avoid conflicts with other shell plugins. -- Elvish: upgrade to new lambda syntax. - Fzf: added `--keep-right` option by default, upgrade minimum supported version to v0.21.0. - Bash: only enable completions on 4.4+. - Fzf: bypass `ls` alias in preview window. - Retain ownership of database file. -- Elvish: upgrade to new try-catch syntax, upgrade minimum supported version to - v0.18.0. - `zoxide query --interactive` should not conflict with `--score`. ## [0.8.0] - 2021-12-25 diff --git a/README.md b/README.md index 37054bf..bef03f4 100644 --- a/README.md +++ b/README.md @@ -190,22 +190,20 @@ zoxide init fish | source
Nushell -First, generate the Nushell initialization script (you may need to do this -whenever you update Nushell): +Add this to your env file (find it by running `$nu.env-path` in Nushell): ```sh zoxide init nushell --hook prompt | save ~/.zoxide.nu ``` -Now, add this to your configuration (find it by running `$nu.config-path` in -Nushell): +Now, add this to the end of your config file (find it by running +`$nu.config-path` in Nushell): ```sh -zoxide init nushell --hook prompt | save ~/.zoxide.nu source ~/.zoxide.nu ``` -Note: zoxide only supports Nushell v0.60.0 and above. +Note: zoxide only supports Nushell v0.61.0 and above.
diff --git a/man/man1/zoxide-init.1 b/man/man1/zoxide-init.1 index 30ad212..79d9ee8 100644 --- a/man/man1/zoxide-init.1 +++ b/man/man1/zoxide-init.1 @@ -30,22 +30,20 @@ Add this to your configuration (usually \fB~/.config/fish/config.fish\fR): .fi .TP .B nushell -First, generate the Nushell initialization script (you may need to do this -whenever you update Nushell): +Add this to your env file (find it by running \fB$nu.env-path\fR in Nushell): .sp .nf \fBzoxide init nushell --hook prompt | save ~/.zoxide.nu\fR .fi .sp -Now, add this to your configuration (find it by running \fB$nu.config-path\fR in -Nushell): +Now, add this to the end of your config file (find it by running +\fB$nu.config-path\fR in Nushell): .sp .nf - \fBzoxide init nushell --hook prompt | save ~/.zoxide.nu\fR \fBsource ~/.zoxide.nu\fR .fi .sp -Note: zoxide only supports Nushell v0.60.0 and above. +Note: zoxide only supports Nushell v0.61.0 and above. .TP .B powershell Add this to your configuration (find it by running \fBecho $profile\fR in diff --git a/templates/nushell.txt b/templates/nushell.txt index e9c08cb..15d2ae0 100644 --- a/templates/nushell.txt +++ b/templates/nushell.txt @@ -80,15 +80,13 @@ alias {{cmd}}i = __zoxide_zi {%- endmatch %} {{ section }} -# To initialize zoxide, first generate the Nushell initialization script (you -# may need to do this whenever you update Nushell): +# Add this to your env file (find it by running `$nu.env-path` in Nushell): # # zoxide init nushell --hook prompt | save ~/.zoxide.nu # -# Now, add this to your configuration (find it by running `$nu.config-path` in -# Nushell): +# Now, add this to the end of your config file (find it by running +# `$nu.config-path` in Nushell): # -# zoxide init nushell --hook prompt | save ~/.zoxide.nu # source ~/.zoxide.nu # -# Note: zoxide only supports Nushell v0.60.0 and above. +# Note: zoxide only supports Nushell v0.61.0 and above.