branch: elpa/aidermacs
commit 3a99be507b5a287430528bca457e53b1c46b21ef
Author: Mingde (Matthew) Zeng <[email protected]>
Commit: Mingde (Matthew) Zeng <[email protected]>
Fix "Copy Last Aidermacs Output" keybinding
---
README.org | 4 ++--
aidermacs.el | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.org b/README.org
index 8c4fd84085..40bc2403d6 100644
--- a/README.org
+++ b/README.org
@@ -186,7 +186,7 @@ Access more specific commands through submenus:
- Debug exceptions (=x=)
- Undo changes (=u=)
-**** Understanding Code (Under "Understanding")
+**** Understanding Code
- =m= Show last commit
- =q= Ask questions
- =e= Explain code at point/region
@@ -194,7 +194,7 @@ Access more specific commands through submenus:
**** Other Features
- =H= View session history
-- =C= Copy last AI output
+- =L= Copy last AI output
- =l= Clear buffer
- =h= Get help
diff --git a/aidermacs.el b/aidermacs.el
index 361bc31a2d..b4cc575363 100644
--- a/aidermacs.el
+++ b/aidermacs.el
@@ -183,7 +183,7 @@ This function can be customized or redefined by the user."
["Others"
("H" "Session History" aidermacs-show-output-history)
- ("C" "Copy Last Aidermacs Output" aidermacs-get-last-output)
+ ("L" "Copy Last Aidermacs Output" aidermacs-get-last-output)
("O" "Clear Model Selection Cache" aidermacs-clear-model-cache)
("l" "Clear Buffer" aidermacs-clear)
("h" "Aider Help" aidermacs-help)]])