We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e43ed8 commit 4f5f4a7Copy full SHA for 4f5f4a7
aider-core.el
@@ -274,11 +274,12 @@ Returns the created buffer or nil on failure."
274
(aider--comint-send-string-syntax-highlight buffer text))
275
('vterm
276
(with-current-buffer buffer
277
+ ;; vterm provides special functions for sending input that handle terminal control codes
278
(vterm-send-string text)
279
(vterm-send-return)))
280
('eat
281
- ;; For eat, we send the text followed by a newline to the process
282
+ ;; eat uses standard process communication, so we send directly to the process
283
(let ((proc (get-buffer-process buffer)))
284
(when proc
285
(process-send-string proc (concat text "\n"))))))
0 commit comments