This commit is contained in:
shaked-shlomo 2026-06-02 01:15:26 +03:00 committed by GitHub
commit a7946d3f57
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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.",