branch: elpa/aidermacs
commit 65734fc1b01d613ab08c9ba6c53d07e3cc03f073
Author: Kang Tu <kang...@apple.com>
Commit: Kang Tu <kang...@apple.com>

    improve text
---
 aider.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/aider.el b/aider.el
index 4d0b0ea2a5..195f3f7ef2 100644
--- a/aider.el
+++ b/aider.el
@@ -26,7 +26,7 @@
 ;; Transient menu for Aider commands
 (transient-define-prefix aider-transient-menu ()
   "Transient menu for Aider commands."
-  ["Aider Menu"
+  ["Aider: AI pair programming"
    ["Aider process"
     ("a" "Run Aider" aider-run-aider)
     ("f" "Add Current File" aider-add-current-file)
@@ -44,7 +44,7 @@
     ]
    ["Other"
     ("g" "General Command" aider-general-command)
-    ("h" "Help Command" aider-help) ;; Menu item for help command
+    ("h" "Help" aider-help) ;; Menu item for help command
     ]
    ])
 
@@ -153,7 +153,7 @@ COMMAND should be a string representing the command to 
send."
 (defun aider-help ()
   "Prompt the user for a command and send it to the corresponding aider comint 
buffer prefixed with \"/help \"."
   (interactive)
-  (let ((command (read-string "Enter help command: ")))
+  (let ((command (read-string "Enter help question: ")))
     (aider--send-command (concat "/help " command))))
 
 ;; New function to get command from user and send it prefixed with "/architect 
"

Reply via email to