[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/aidermacs 005f93e1d0 062/466: feat: Add aider-clear functi
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/aidermacs 005f93e1d0 062/466: feat: Add aider-clear function and menu item above aider-reset |
Date: |
Sat, 15 Mar 2025 19:11:15 -0400 (EDT) |
branch: elpa/aidermacs
commit 005f93e1d0e0ecefda687debb9231fbc60e03a44
Author: Your Name (aider) <you@example.com>
Commit: Your Name (aider) <you@example.com>
feat: Add aider-clear function and menu item above aider-reset
---
aider.el | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/aider.el b/aider.el
index a8a9132778..702d561902 100644
--- a/aider.el
+++ b/aider.el
@@ -40,6 +40,7 @@ This function can be customized or redefined by the user."
("a" "Run Aider" aider-run-aider)
("f" "Add Current File" aider-add-current-file)
("z" "Switch to Aider Buffer" aider-switch-to-buffer)
+ ("c" "Clear Aider" aider-clear) ;; Menu item for clear command
("s" "Reset Aider" aider-reset) ;; Menu item for reset command
]
["Code change"
@@ -98,6 +99,11 @@ If not in a git repository, an error is raised."
(message "Aider buffer '%s' does not exist." (aider-buffer-name)))))
;; Function to reset the Aider buffer
+(defun aider-clear ()
+ "Send the command \"/clear\" to the Aider buffer."
+ (interactive)
+ (aider--send-command "/clear"))
+
(defun aider-reset ()
"Send the command \"/reset\" to the Aider buffer."
(interactive)
- [nongnu] elpa/aidermacs cf6df7ed58 033/466: update README, (continued)
- [nongnu] elpa/aidermacs cf6df7ed58 033/466: update README, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs f50cde63fc 036/466: docs: update README with details about aider-help function and commit generation process, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 6c7970928c 040/466: fix a bug, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs a18d27862e 041/466: lower case, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 4eaf0d435e 044/466: chore: remove default key binding for aider-transient-menu and update README accordingly, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs e1cb57f818 047/466: add helm-aider.el, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 380d1fe3c0 050/466: give up multiple line input, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 1ed5ec220e 052/466: feat: update prompts for code command and debug command to reflect new functionality, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 917a254054 057/466: feat: replace new-line characters with spaces in user input while preserving the final new-line in aider-read-string function, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs ffb8126d52 056/466: refactor: simplify aider-read-string function by removing unnecessary string processing, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 005f93e1d0 062/466: feat: Add aider-clear function and menu item above aider-reset,
ELPA Syncer <=
- [nongnu] elpa/aidermacs e364f7122d 065/466: feat: Add test_aider.el, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 516270aab0 069/466: update test, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 3805e94b2d 072/466: fix: require needed packages, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 2fad218234 077/466: not necessarily switching to aider buffer for each command, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs bb8e7bd6ac 087/466: Merge pull request #6 from tninja/feat_ask2__and__batch_add, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 6eca54cb2f 009/466: refactor: remove aider-drop-current-file function and its references, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 2e0dcea1c4 010/466: rename the function, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs c58098cd07 020/466: couple of refactoring, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 3bebfd6dcc 029/466: add other tool, ELPA Syncer, 2025/03/15
- [nongnu] elpa/aidermacs 1d39e5720d 034/466: tiny tweak text, ELPA Syncer, 2025/03/15