Update nushell template to use rest operator where needed (#663)

This commit is contained in:
Zuruh 2024-02-12 22:31:04 +01:00 committed by GitHub
parent c8dda80716
commit f32dc6bcd8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 6 additions and 6 deletions

View File

@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Nushell: support for v0.86.0.
- Nushell: support for v0.89.0.
## [0.9.2] - 2023-08-04

View File

@ -243,7 +243,7 @@ zoxide can be installed in 4 easy steps:
> ```
>
> **Note**
> zoxide only supports Nushell v0.86.0+.
> zoxide only supports Nushell v0.89.0+.
</details>

View File

@ -45,7 +45,7 @@ Now, add this to the \fBend\fR of your config file (find it by running
\fBsource ~/.zoxide.nu\fR
.fi
.sp
Note: zoxide only supports Nushell v0.86.0+.
Note: zoxide only supports Nushell v0.89.0+.
.TP
.B powershell
Add this to the \fBend\fR of your config file (find it by running \fBecho

View File

@ -44,7 +44,7 @@ def --env __zoxide_z [...rest:string] {
let path = if (($rest | length) <= 1) and ($arg0 == '-' or ($arg0 | path expand | path type) == dir) {
$arg0
} else {
(zoxide query --exclude $env.PWD -- $rest | str trim -r -c "\n")
(zoxide query --exclude $env.PWD -- ...$rest | str trim -r -c "\n")
}
cd $path
{%- if echo %}
@ -54,7 +54,7 @@ def --env __zoxide_z [...rest:string] {
# Jump to a directory using interactive search.
def --env __zoxide_zi [...rest:string] {
cd $'(zoxide query --interactive -- $rest | str trim -r -c "\n")'
cd $'(zoxide query --interactive -- ...$rest | str trim -r -c "\n")'
{%- if echo %}
echo $env.PWD
{%- endif %}
@ -86,4 +86,4 @@ alias {{cmd}}i = __zoxide_zi
#
# source ~/.zoxide.nu
#
# Note: zoxide only supports Nushell v0.86.0+.
# Note: zoxide only supports Nushell v0.89.0+.