Skip to content

Commit

Permalink
Upgrade Nushell to v0.37.0 (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajeetdsouza committed Sep 17, 2021
1 parent 58313c6 commit 41b8f08
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
if: ${{ matrix.os != 'windows-latest' }}
with:
nix_path: nixpkgs=https://github.com/NixOS/nixpkgs/archive/20.09.tar.gz
- run: cargo xtask ci --nix ${{ matrix.os != 'windows-latest' }}
- run: cargo xtask --nix=${{ matrix.os != 'windows-latest' }} ci
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

### Changed

- Nushell: upgrade minimum supported version to v0.37.0.

## [0.7.5] - 2020-09-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ Add this to your configuration (find it by running `config path` in Nushell):
startup = ["zoxide init nushell --hook prompt | save ~/.zoxide.nu", "source ~/.zoxide.nu"]
```

Note: zoxide only supports Nushell v0.36.0 and above.
Note: zoxide only supports Nushell v0.37.0 and above.

</details>

Expand Down
2 changes: 1 addition & 1 deletion man/zoxide-init.1
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Nushell):
\fBstartup = ["zoxide init nushell --hook prompt | save ~/.zoxide.nu", "source ~/.zoxide.nu"]\fR
.fi
.sp
Note: zoxide only supports Nushell v0.36.0 and above.
Note: zoxide only supports Nushell v0.37.0 and above.
.TP
.B powershell
Add this to your configuration (find it by running \fBecho $profile\fR in
Expand Down
8 changes: 4 additions & 4 deletions templates/nushell.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ def __zoxide_hook [] {
}

# Initialize hook.
let-env PROMPT_STRING = (
let prompt = (if ($nu.env | select PROMPT_STRING | empty?) {
let-env PROMPT_COMMAND = (
let prompt = (if ($nu.env | select PROMPT_COMMAND | empty?) {
if ($nu.config | select prompt | empty?) { '__zoxide_prompt' } { $nu.config.prompt }
} { $nu.env.PROMPT_STRING });
} { $nu.env.PROMPT_COMMAND });
if ($prompt | str contains '__zoxide_hook') { $prompt } { $'__zoxide_hook;($prompt)' }
)

Expand Down Expand Up @@ -107,4 +107,4 @@ alias {{cmd}}i = __zoxide_zi
#
# startup = ['zoxide init nushell --hook prompt | save ~/.zoxide.nu', 'source ~/.zoxide.nu']
#
# Note: zoxide only supports Nushell v0.36.0 and above.
# Note: zoxide only supports Nushell v0.37.0 and above.

0 comments on commit 41b8f08

Please sign in to comment.