diff --git a/README.md b/README.md index fa31059..67b2416 100644 --- a/README.md +++ b/README.md @@ -184,9 +184,9 @@ require("oil").setup({ keymaps = { ["g?"] = "actions.show_help", [""] = "actions.select", - [""] = { "actions.select_split", opts = { vertical = true } }, - [""] = { "actions.select_split", opts = { horizontal = true } }, - [""] = { "actions.select_split", opts = { tab = true } }, + [""] = { "actions.select", opts = { vertical = true } }, + [""] = { "actions.select", opts = { horizontal = true } }, + [""] = { "actions.select", opts = { tab = true } }, [""] = "actions.preview", [""] = "actions.close", [""] = "actions.refresh", diff --git a/doc/oil.txt b/doc/oil.txt index 548c739..b20dbe9 100644 --- a/doc/oil.txt +++ b/doc/oil.txt @@ -75,9 +75,9 @@ CONFIG *oil-confi keymaps = { ["g?"] = "actions.show_help", [""] = "actions.select", - [""] = { "actions.select_split", opts = { vertical = true } }, - [""] = { "actions.select_split", opts = { horizontal = true } }, - [""] = { "actions.select_split", opts = { tab = true } }, + [""] = { "actions.select", opts = { vertical = true } }, + [""] = { "actions.select", opts = { horizontal = true } }, + [""] = { "actions.select", opts = { tab = true } }, [""] = "actions.preview", [""] = "actions.close", [""] = "actions.refresh", diff --git a/lua/oil/config.lua b/lua/oil/config.lua index af19c05..563ed0f 100644 --- a/lua/oil/config.lua +++ b/lua/oil/config.lua @@ -58,9 +58,9 @@ local default_config = { keymaps = { ["g?"] = "actions.show_help", [""] = "actions.select", - [""] = { "actions.select_split", opts = { vertical = true } }, - [""] = { "actions.select_split", opts = { horizontal = true } }, - [""] = { "actions.select_split", opts = { tab = true } }, + [""] = { "actions.select", opts = { vertical = true } }, + [""] = { "actions.select", opts = { horizontal = true } }, + [""] = { "actions.select", opts = { tab = true } }, [""] = "actions.preview", [""] = "actions.close", [""] = "actions.refresh",