summaryrefslogtreecommitdiff
path: root/modules/ai-conversations.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-10-26 23:06:31 -0500
committerCraig Jennings <c@cjennings.net>2025-10-26 23:06:31 -0500
commitcd64af4642fd54a4d7b7be93bfb317fc64f623a6 (patch)
tree3c8a0e3814d987137ab8a987382f1237d0c97324 /modules/ai-conversations.el
parentdf21760636366305a4e2170516479ae7792dab3b (diff)
chore: Remove redundant autoload directives from modules
Remove unnecessary autoload directives from various functions across multiple modules, cleaning up the codebase and improving readability. These directives were redundant and not needed for the current project setup.
Diffstat (limited to 'modules/ai-conversations.el')
-rw-r--r--modules/ai-conversations.el3
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/ai-conversations.el b/modules/ai-conversations.el
index 92549176..4f97d761 100644
--- a/modules/ai-conversations.el
+++ b/modules/ai-conversations.el
@@ -159,7 +159,6 @@ Expect FILENAME to match _YYYYMMDD-HHMMSS.gptel."
(or (get-buffer buf-name)
(user-error "Could not create or find *AI-Assistant* buffer"))))
-;;;###autoload
(defun cj/gptel-save-conversation ()
"Save the current AI-Assistant buffer to a .gptel file.
@@ -188,7 +187,6 @@ Enable autosave for subsequent AI responses to the same file."
(setq-local cj/gptel-autosave-enabled t))
(message "Conversation saved to: %s" filepath))))
-;;;###autoload
(defun cj/gptel-delete-conversation ()
"Delete a saved GPTel conversation file (chronologically sorted candidates)."
(interactive)
@@ -218,7 +216,6 @@ Enable autosave for subsequent AI responses to the same file."
(when (looking-at "^\n+")
(delete-region (point) (match-end 0)))))
-;;;###autoload
(defun cj/gptel-load-conversation ()
"Load a saved GPTel conversation into the AI-Assistant buffer.