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 }, },