diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/docgen.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/docgen.lua b/scripts/docgen.lua index 04bbd6cc..0de2c047 100755 --- a/scripts/docgen.lua +++ b/scripts/docgen.lua @@ -131,7 +131,7 @@ local function make_lsp_sections() map_sorted(template_def.default_config, function(k, v) if type(v) == 'boolean' then return ('- `%s` : `%s`'):format(k, v) - elseif type(v) ~= 'function' then + elseif type(v) ~= 'function' and k ~= 'root_dir' then return ('- `%s` :\n ```lua\n%s\n ```'):format(k, indent(2, inspect(v))) end |
