diff --git a/README.md b/README.md index bfb0b31a..1929c383 100644 --- a/README.md +++ b/README.md @@ -187,7 +187,7 @@ require("oil").setup({ [""] = "actions.select", [""] = { "actions.select", opts = { vertical = true }, desc = "Open the entry in a vertical split" }, [""] = { "actions.select", opts = { horizontal = true }, desc = "Open the entry in a horizontal split" }, - [""] = { "actions.select", opts = { tab = true }, desc = "Open the entry in a horizontal split" }, + [""] = { "actions.select", opts = { tab = true }, desc = "Open the entry in new tab" }, [""] = "actions.preview", [""] = "actions.close", [""] = "actions.refresh", diff --git a/doc/oil.txt b/doc/oil.txt index 78b92093..8e551831 100644 --- a/doc/oil.txt +++ b/doc/oil.txt @@ -77,7 +77,7 @@ CONFIG *oil-confi [""] = "actions.select", [""] = { "actions.select", opts = { vertical = true }, desc = "Open the entry in a vertical split" }, [""] = { "actions.select", opts = { horizontal = true }, desc = "Open the entry in a horizontal split" }, - [""] = { "actions.select", opts = { tab = true }, desc = "Open the entry in a horizontal split" }, + [""] = { "actions.select", opts = { tab = true }, desc = "Open the entry in new tab" }, [""] = "actions.preview", [""] = "actions.close", [""] = "actions.refresh", diff --git a/lua/oil/config.lua b/lua/oil/config.lua index 615a4365..1b6f0852 100644 --- a/lua/oil/config.lua +++ b/lua/oil/config.lua @@ -62,7 +62,7 @@ local default_config = { [""] = "actions.select", [""] = { "actions.select", opts = { vertical = true }, desc = "Open the entry in a vertical split" }, [""] = { "actions.select", opts = { horizontal = true }, desc = "Open the entry in a horizontal split" }, - [""] = { "actions.select", opts = { tab = true }, desc = "Open the entry in a horizontal split" }, + [""] = { "actions.select", opts = { tab = true }, desc = "Open the entry in new tab" }, [""] = "actions.preview", [""] = "actions.close", [""] = "actions.refresh",