[docgen] Update docs

skip-checks: true
This commit is contained in:
Github Actions 2023-03-18 23:16:32 +00:00
parent 642bb30323
commit 6d9b1e5241
2 changed files with 8 additions and 0 deletions

View file

@ -168,6 +168,10 @@ require("oil").setup({
is_hidden_file = function(name, bufnr)
return vim.startswith(name, ".")
end,
-- This function defines what will never be shown, even when `show_hidden` is set
is_always_hidden = function(name, bufnr)
return false
end,
},
-- Configuration for the floating window in oil.open_float
float = {

View file

@ -73,6 +73,10 @@ OPTIONS *oil-option
is_hidden_file = function(name, bufnr)
return vim.startswith(name, ".")
end,
-- This function defines what will never be shown, even when `show_hidden` is set
is_always_hidden = function(name, bufnr)
return false
end,
},
-- Configuration for the floating window in oil.open_float
float = {