feat: add the missing config option for enable_debug_commands
This commit is contained in:
parent
3859f5531a
commit
0dd3e6e6b6
1 changed files with 4 additions and 0 deletions
|
|
@ -115,6 +115,7 @@ function M.load()
|
||||||
enable_chunking = false,
|
enable_chunking = false,
|
||||||
-- New default for step-by-step
|
-- New default for step-by-step
|
||||||
enable_step_by_step = true
|
enable_step_by_step = true
|
||||||
|
enable_debug_commands = false
|
||||||
}
|
}
|
||||||
|
|
||||||
if fd then
|
if fd then
|
||||||
|
|
@ -164,6 +165,9 @@ function M.load()
|
||||||
if type(result.enable_step_by_step) == "boolean" then
|
if type(result.enable_step_by_step) == "boolean" then
|
||||||
config.enable_step_by_step = result.enable_step_by_step
|
config.enable_step_by_step = result.enable_step_by_step
|
||||||
end
|
end
|
||||||
|
if type(result.enable_debug_commands) == "boolean" then
|
||||||
|
config.enable_debug_commands = result.enable_debug_commands
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue