chore: remove unused fzf

Kujtim Hoxha created

Change summary

internal/fsext/fileutil.go | 11 +----------
1 file changed, 1 insertion(+), 10 deletions(-)

Detailed changes

internal/fsext/fileutil.go 🔗

@@ -17,10 +17,7 @@ import (
 	ignore "github.com/sabhiram/go-gitignore"
 )
 
-var (
-	rgPath  string
-	fzfPath string
-)
+var rgPath string
 
 func init() {
 	var err error
@@ -30,12 +27,6 @@ func init() {
 			slog.Warn("Ripgrep (rg) not found in $PATH. Some features might be limited or slower.")
 		}
 	}
-	fzfPath, err = exec.LookPath("fzf")
-	if err != nil {
-		if log.Initialized() {
-			slog.Warn("FZF not found in $PATH. Some features might be limited or slower.")
-		}
-	}
 }
 
 func GetRgCmd(globPattern string) *exec.Cmd {