[docgen] Update docs

skip-checks: true
This commit is contained in:
Github Actions 2023-02-23 05:18:35 +00:00
parent e5acff1b77
commit 647c2d316c
2 changed files with 8 additions and 0 deletions

View file

@ -162,6 +162,10 @@ require("oil").setup({
view_options = {
-- Show files and directories that start with "."
show_hidden = false,
-- This function defines what is considered a "hidden" file
is_hidden_file = function(name, bufnr)
return vim.startswith(name, ".")
end,
},
-- Configuration for the floating window in oil.open_float
float = {

View file

@ -67,6 +67,10 @@ OPTIONS *oil-option
view_options = {
-- Show files and directories that start with "."
show_hidden = false,
-- This function defines what is considered a "hidden" file
is_hidden_file = function(name, bufnr)
return vim.startswith(name, ".")
end,
},
-- Configuration for the floating window in oil.open_float
float = {