From 14a914aef1db4bf4b43d98d1bcf29754ea7997fc Mon Sep 17 00:00:00 2001 From: Github Actions Date: Thu, 30 Mar 2023 01:44:38 +0000 Subject: [PATCH] [docgen] Update docs skip-checks: true --- README.md | 13 +++++++++++++ doc/oil.txt | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/README.md b/README.md index 165bd53..b575159 100644 --- a/README.md +++ b/README.md @@ -207,6 +207,19 @@ require("oil").setup({ winblend = 0, }, }, + -- Configuration for the floating progress window + progress = { + max_width = 0.9, + min_width = { 40, 0.4 }, + width = nil, + max_height = { 10, 0.9 }, + min_height = { 5, 0.1 }, + height = nil, + border = "rounded", + win_options = { + winblend = 0, + }, + }, }) ``` diff --git a/doc/oil.txt b/doc/oil.txt index e9e5190..53cb083 100644 --- a/doc/oil.txt +++ b/doc/oil.txt @@ -112,6 +112,19 @@ OPTIONS *oil-option winblend = 0, }, }, + -- Configuration for the floating progress window + progress = { + max_width = 0.9, + min_width = { 40, 0.4 }, + width = nil, + max_height = { 10, 0.9 }, + min_height = { 5, 0.1 }, + height = nil, + border = "rounded", + win_options = { + winblend = 0, + }, + }, }) <