[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/aidermacs 097cd76663 111/466: Hardcode terminal type to du
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/aidermacs 097cd76663 111/466: Hardcode terminal type to dumb |
Date: |
Sat, 15 Mar 2025 19:12:18 -0400 (EDT) |
branch: elpa/aidermacs
commit 097cd76663b8713a2402a0a86c4994a563977288
Author: Troy Hinckley <t.macman@gmail.com>
Commit: Troy Hinckley <t.macman@gmail.com>
Hardcode terminal type to dumb
Aider does not work well when it expects to have more advanced shell
capabilities and we don't
provide them, so hardcode the TERM variable.
---
aider.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/aider.el b/aider.el
index 94b8e39ec5..6028cc848d 100644
--- a/aider.el
+++ b/aider.el
@@ -98,7 +98,8 @@ If not in a git repository, an error is raised."
(defun aider-run-aider ()
"Create a comint-based buffer and run \"aider\" for interactive
conversation."
(interactive)
- (let* ((buffer-name (aider-buffer-name)))
+ (let* ((buffer-name (aider-buffer-name))
+ (comint-terminfo-terminal "dumb"))
;; Check if the buffer already has a running process
(unless (comint-check-proc buffer-name)
;; Create a new comint buffer and start the process
- [nongnu] elpa/aidermacs abed222ebb 061/466: no need to add current file during start, (continued)
- [nongnu] elpa/aidermacs abed222ebb 061/466: no need to add current file during start, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 99fbe5a37c 064/466: refactor: extract buffer name logic to `aider-buffer-name-from-git-repo-path`, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 4b462a20cd 060/466: fuzzy match support, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 84dcfe827d 073/466: chore: remove unused local variables, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 673011c9c9 074/466: doc: fix quote usage in docstring, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 7fb8c67a16 078/466: Merge pull request #1 from AmaiKinono/fix-comint, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 52e1c836cb 101/466: refactor: Rename parameter in aider--send-command for clarity and update calls, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 61ae93b373 108/466: re-organize menu, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 20a72c239b 106/466: adding back (provide 'aider), ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 0742aa2666 110/466: Merge remote-tracking branch 'refs/remotes/origin/main', ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 097cd76663 111/466: Hardcode terminal type to dumb,
ELPA Syncer <=
- [nongnu] elpa/aidermacs 60dbdcd6ad 120/466: Feat: Added defun aider-magit-show-last-commit function (#13), ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 3893b78a16 124/466: Merge pull request #14 from CeleritasCelery/improve-display, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 08452a8a30 115/466: fix README, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 84e6abac02 121/466: update menu, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs cf42ae6691 119/466: add last commit function, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 6bf4d6789a 135/466: Feat: Highlight the comint buffer based on initial buffer major mode (#21), ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 5f9b7fa1fe 136/466: Feat: easily refactor the function under cursor (#22), ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs b636c89b78 141/466: Refactor: Merge some dup code, move less used functions to aider-etc.el. Update the menu. (#33), ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs d0e296f524 145/466: docs: Add docs for new refactor and explain functions, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs f256eda338 146/466: docs: Update README to reflect new function names and usage, ELPA Syncer, 2025/03/15