Compare commits

...

1 Commits

Author SHA1 Message Date
Dmitriy Kovalenko bd4d998332 chore: Remove not-required notifications 2025-12-15 13:57:32 -08:00
3 changed files with 1 additions and 8 deletions
+1 -5
View File
@@ -28,11 +28,7 @@ local function setup_global_autocmds(config)
vim.uv.fs_realpath(file_path, function(rp_err, real_path)
if rp_err or not real_path then return end
local ok, track_err = pcall(fuzzy.track_access, real_path)
if not ok then
vim.notify('FFF: Failed to track file access: ' .. tostring(track_err), vim.log.levels.ERROR)
end
pcall(fuzzy.track_access, real_path)
end)
end)
end,
-2
View File
@@ -21,13 +21,11 @@ function M.setup()
if ok then
M.provider = provider
M.provider_name = provider_name
vim.notify('FFF Icons: Loaded provider ' .. provider_name, vim.log.levels.INFO)
return true
end
end
M.setup_failed = true
vim.notify('FFF Icons: No icon provider found', vim.log.levels.WARN)
return false
end
-1
View File
@@ -147,7 +147,6 @@ mod tests {
// Simple test to verify highest scores come first
let mut data = vec![100, 300, 200];
sort_with_buffer(&mut data, |a, b| b.cmp(a));
println!("After sort: {:?}", data);
assert_eq!(data[0], 300, "Highest should be first");
assert_eq!(data[1], 200, "Middle should be second");
assert_eq!(data[2], 100, "Lowest should be last");