File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -522,8 +522,7 @@ This is similar to `backward-delete-char' but protects the prompt/context line."
522522 " \n\n " )))
523523 (" mcpToolCall" (let ((name (plist-get content :name )))
524524 (eca-chat--add-text
525- (format (propertize " \n %s %s\n "
526- 'line-spacing 10 )
525+ (format (propertize " \n %s %s\n " )
527526 (propertize " Calling MCP tool"
528527 'line-prefix (propertize eca-chat-prompt-prefix 'font-lock-face 'eca-chat-mcp-tool-call-face )
529528 'font-lock-face 'eca-chat-mcp-tool-call-face )
Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ If not provided, download and start eca automatically."
275275 :name " eca"
276276 :command (eca--server-command)
277277 :buffer eca--process-buffer-name
278- :stderr (get-buffer-create ( generate-new-buffer-name eca--process-stderr-buffer-name) )
278+ :stderr (get-buffer-create eca--process-stderr-buffer-name)
279279 :filter #'eca--process-filter
280280 :sentinel (lambda (process exit-str )
281281 (unless (process-live-p process)
@@ -314,7 +314,8 @@ If not provided, download and start eca automatically."
314314 (setf (eca--session-chat-default-behavior eca--session) chat-default-behavior)
315315 (eca-info " Started!" )
316316 (eca-chat-open)
317- (run-hooks 'eca-after-initialize-hook )))))
317+ (run-hooks 'eca-after-initialize-hook ))
318+ :error-callback (lambda (e ) (eca-error e)))))
318319 ('started (eca-chat-open))))
319320
320321;;;### autoload
You can’t perform that action at this time.
0 commit comments