branch: elpa/aidermacs commit d5ccb2d10c3802f763a24357ad70f72c3382f7ee Author: Mingde (Matthew) Zeng <matthew...@posteo.net> Commit: Mingde (Matthew) Zeng <matthew...@posteo.net>
Disable auto-commits by default in aidermacs --- README.org | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.org b/README.org index ad0237c9c3..8c4fd84085 100644 --- a/README.org +++ b/README.org @@ -111,13 +111,13 @@ Available backends: - =comint= (default): Uses Emacs' built-in terminal emulation - =vterm=: Leverages vterm for better terminal compatibility -** Disabling Auto-Commits +** Re-Enable Auto-Commits -By default, Aidermacs automatically commits changes made by the AI. Some users may find this behavior disruptive. You can disable auto-commits by setting =Aidermacs-auto-commits= to =nil=: +Aider by default automatically commits changes made by the AI. We find this behavior /very/ intrusive, so we disabled it for you. You can re-enable auto-commits by setting =aidermacs-auto-commits= to =t=: #+BEGIN_SRC emacs-lisp -;; Disable auto-commits -(setq aidermacs-auto-commits nil) +;; Enable auto-commits +(setq aidermacs-auto-commits t) #+END_SRC With auto-commits disabled, you'll need to manually commit changes using your preferred Git workflow.