branch: elpa/aidermacs
commit d230cd5f9548b15ac8e2fdcc97d58ac81f29bd0e
Merge: 142a154b5f 65118bb465
Author: Matthew Zeng <matthew...@posteo.net>
Commit: GitHub <nore...@github.com>

    Merge pull request #19 from CeleritasCelery/dumb-text
    
    Remove "Detected dumb terminal" from output
---
 aidermacs-backend-comint.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/aidermacs-backend-comint.el b/aidermacs-backend-comint.el
index 4af2e7993b..cfa098b5dd 100644
--- a/aidermacs-backend-comint.el
+++ b/aidermacs-backend-comint.el
@@ -241,7 +241,8 @@ This allows for multi-line input without sending the 
command."
 
 (defun aidermacs-run-comint (program args buffer-name)
   "Create a comint-based buffer and run aidermacs PROGRAM with ARGS in 
BUFFER-NAME."
-  (let ((comint-terminfo-terminal "dumb"))
+  (let ((comint-terminfo-terminal "eterm-color")
+        (args (append (list "--no-pretty" "--no-fancy-input") args)))
     (unless (comint-check-proc buffer-name)
       (apply 'make-comint-in-buffer "aidermacs" buffer-name program nil args)
       (with-current-buffer buffer-name

Reply via email to