From 83be6bc704f64896ea8ad08840e8c26509689e0c Mon Sep 17 00:00:00 2001 From: user <17591696+sand4rt@users.noreply.github.com> Date: Sat, 18 Jul 2026 09:22:12 +0200 Subject: [PATCH] chore: bump fyler --- README.md | 4 ++-- tests/scripts/init_with_zen.lua | 2 +- tests/scripts/init_with_zen_small.lua | 2 +- tests/test_integrations.lua | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ef831ed..31846a4 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ return { left = { { filetype = "*", min_width = 46 }, { filetype = "fugitiveblame" }, - { filetype = "fyler" }, + { filetype = "fyler_finder" }, { filetype = "neotree" }, { filetype = "dbui" }, { filetype = { "undotree", "diff" } }, @@ -106,7 +106,7 @@ programs.nvf.settings.vim.lazy.plugins = { left = [ { filetype = "*"; min_width = 46; } { filetype = "fugitiveblame"; } - { filetype = "fyler"; } + { filetype = "fyler_finder"; } { filetype = "neotree"; } { filetype = "dbui"; } { filetype = [ "undotree" "diff" ]; } diff --git a/tests/scripts/init_with_zen.lua b/tests/scripts/init_with_zen.lua index 4d7afd8..4e1d7ba 100644 --- a/tests/scripts/init_with_zen.lua +++ b/tests/scripts/init_with_zen.lua @@ -22,7 +22,7 @@ require("zen").setup({ }, left = { { filetype = "*", min_width = 46 }, - { filetype = "fyler" }, + { filetype = "fyler_finder" }, { filetype = "dbui" }, }, right = { diff --git a/tests/scripts/init_with_zen_small.lua b/tests/scripts/init_with_zen_small.lua index 00090ca..54d6665 100644 --- a/tests/scripts/init_with_zen_small.lua +++ b/tests/scripts/init_with_zen_small.lua @@ -17,7 +17,7 @@ require("zen").setup({ }, left = { { filetype = "*", min_width = 46 }, - { filetype = "fyler" }, + { filetype = "fyler_finder" }, }, right = { { filetype = "*", min_width = 46 }, diff --git a/tests/test_integrations.lua b/tests/test_integrations.lua index 8877e94..c7103fd 100644 --- a/tests/test_integrations.lua +++ b/tests/test_integrations.lua @@ -18,7 +18,7 @@ T["left integration"]["opening closes zen side buffer, closing reopens it"] = fu Helpers.expect.layout(child, { type = "row", children = { - { type = "leaf", filetype = "fyler", buftype = "acwrite", width = 46, height = 50 }, + { type = "leaf", filetype = "fyler_finder", buftype = "acwrite", width = 46, height = 50 }, { type = "leaf", filetype = "", buftype = "", width = 146, height = 50 }, { type = "leaf", filetype = "zen-right", buftype = "nofile", width = 46, height = 50 }, }, @@ -43,7 +43,7 @@ T["left integration"]["opening an integration should close the existing integrat Helpers.expect.layout(child, { type = "row", children = { - { type = "leaf", filetype = "fyler", buftype = "acwrite", width = 46, height = 50 }, + { type = "leaf", filetype = "fyler_finder", buftype = "acwrite", width = 46, height = 50 }, { type = "leaf", filetype = "", buftype = "", width = 146, height = 50 }, { type = "leaf", filetype = "zen-right", buftype = "nofile", width = 46, height = 50 }, },