feat: add the missing config option for enable_debug_commands

This commit is contained in:
2025-01-04 17:03:49 +01:00
parent 3859f5531a
commit 0dd3e6e6b6

View File

@@ -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