Skip to content

Commit

Permalink
Update nushell template to use rest operator where needed (ajeetdsouz…
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuruuh authored Feb 12, 2024
1 parent c8dda80 commit f32dc6b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion man/man1/zoxide-init.1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions templates/nushell.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand All @@ -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 %}
Expand Down Expand Up @@ -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+.

0 comments on commit f32dc6b

Please sign in to comment.