doc: move config opts to hide some values from autogen docs
This commit is contained in:
parent
adb2828c4f
commit
7c5384dd15
1 changed files with 13 additions and 9 deletions
|
|
@ -58,15 +58,19 @@ local default_config = {
|
||||||
winblend = 10,
|
winblend = 10,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
adapters = {
|
}
|
||||||
|
|
||||||
|
-- The adapter API hasn't really stabilized yet. We're not ready to advertise or encourage people to
|
||||||
|
-- write their own adapters, and so there's no real reason to edit these config options. For that
|
||||||
|
-- reason, I'm taking them out of the section above so they won't show up in the autogen docs.
|
||||||
|
default_config.adapters = {
|
||||||
["oil://"] = "files",
|
["oil://"] = "files",
|
||||||
["oil-ssh://"] = "ssh",
|
["oil-ssh://"] = "ssh",
|
||||||
},
|
}
|
||||||
-- When opening the parent of a file, substitute these url schemes
|
-- When opening the parent of a file, substitute these url schemes
|
||||||
remap_schemes = {
|
default_config.remap_schemes = {
|
||||||
["scp://"] = "oil-ssh://",
|
["scp://"] = "oil-ssh://",
|
||||||
["sftp://"] = "oil-ssh://",
|
["sftp://"] = "oil-ssh://",
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue