Merge branch 'main' into nushell

This commit is contained in:
Ajeet D'Souza 2022-03-08 21:06:37 +05:30
commit 72c736d07c
2 changed files with 6 additions and 4 deletions

View File

@ -12,14 +12,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Manpages: moved to `man/man1/*.1`.
- Fzf: added `--keep-right` option by default, upgraded minimum version to v0.21.0.
- Bash: only enable completions on 4.4+.
- Nushell: upgrade minimum supported version to v0.59.0.
### Fixed
- Rename `_z` completion function to avoid conflicts with other shell plugins.
- 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, upgraded minimum version to v0.21.0.
- Bash: only enable completions on 4.4+.
- Fzf: bypass `ls` alias in preview window.
## [0.8.0] - 2021-12-25

View File

@ -38,7 +38,8 @@ impl Fzf {
"--bind=ctrl-z:ignore",
]);
if cfg!(unix) {
command.arg("--preview=ls -p {2..}");
command.env("SHELL", "sh");
command.arg(r"--preview=\command -p ls -p {2..}");
}
}