mirror of
https://github.com/denisidoro/navi.git
synced 2026-07-21 01:02:46 +00:00
Merge 0eb4cb29de into 1ac218cb1e
This commit is contained in:
commit
a7946d3f57
1 changed files with 2 additions and 3 deletions
|
|
@ -76,9 +76,8 @@ impl FinderChoice {
|
|||
|
||||
if let Self::Fzf = self {
|
||||
if let Some((major, minor, patch)) = Self::check_fzf_version() {
|
||||
if major == MIN_FZF_VERSION_MAJOR
|
||||
&& minor < MIN_FZF_VERSION_MINOR
|
||||
&& patch < MIN_FZF_VERSION_PATCH
|
||||
if (major, minor, patch)
|
||||
< (MIN_FZF_VERSION_MAJOR, MIN_FZF_VERSION_MINOR, MIN_FZF_VERSION_PATCH)
|
||||
{
|
||||
eprintln!(
|
||||
"Warning: Fzf version {major}.{minor} does not support the preview window layout used by navi.",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue