Haha, I can write claude's conversation to a file

This commit is contained in:
Benson Chu 2026-03-20 16:06:41 -05:00
parent a33ad42fbe
commit 790b4666f3

View file

@ -269,5 +269,14 @@
:around
#'always-expand-mail-abbrevs-in-commit-buffer)
(use-package claude-code
:config
(defun claude-code-write-to-file ()
(interactive)
(let ((str (buffer-string)))
(with-temp-buffer
(insert str)
(call-interactively #'write-file)))))
(provide 'work-config)
;;; work-config.el ends here