Skip to content

Commit 3fbe87f

Browse files
committed
small adjustments
1 parent c48e4e1 commit 3fbe87f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

lua/eca/config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ M._defaults = {
5959
success = "", -- Shown when a tool call succeeds
6060
error = "", -- Shown when a tool call fails
6161
running = "", -- Shown while a tool call is running / has no final status yet
62-
expanded = "", -- Arrow when the tool call details are expanded
62+
expanded = "", -- Arrow when the tool call details are expanded
6363
collapsed = "", -- Arrow when the tool call details are collapsed
6464
},
6565
diff = {

lua/eca/sidebar.lua

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2013,14 +2013,13 @@ function M:_handle_reason_text(content)
20132013
-- Accumulate raw reasoning text
20142014
call.arguments = (call.arguments or "") .. content.text
20152015

2016-
-- Build markdown quote block for the reasoning body
2016+
-- Build plain text block for the reasoning body (no markdown quote prefix)
20172017
call.arguments_lines = {}
20182018

20192019
local lines = Utils.split_lines(call.arguments or "")
20202020
for _, line in ipairs(lines) do
20212021
line = line ~= "" and line or " "
2022-
-- Prefix each line with markdown blockquote
2023-
table.insert(call.arguments_lines, "> " .. line)
2022+
table.insert(call.arguments_lines, line)
20242023
end
20252024

20262025
-- Trailing blank line for spacing

0 commit comments

Comments
 (0)