Skip to content

Commit 1438791

Browse files
committed
fix(session_formatter): no fit in todo
We don't want to truncate the todo items
1 parent 8bf2cdc commit 1438791

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/opencode/ui/session_formatter.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ function M._format_todo_tool(title, input)
497497

498498
for _, item in ipairs(todos) do
499499
local statuses = { in_progress = '-', completed = 'x', pending = ' ' }
500-
M.output:add_line(string.format('- [%s] %s ', statuses[item.status], item.content), true)
500+
M.output:add_line(string.format('- [%s] %s ', statuses[item.status], item.content))
501501
end
502502
end
503503

0 commit comments

Comments
 (0)