Skip to content

Commit

Permalink
fix: Correct emacs auto-save gitignore pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-gauthier committed Dec 12, 2024
1 parent c3f85c3 commit 8ee8279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aider/watch.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def load_gitignores(gitignore_paths: list[Path]) -> Optional[PathSpec]:
"*.bak", # Generic backup
"*.swp", # Vim swap
"*.swo", # Vim swap
"#*#", # Emacs auto-save
"\\#*\\#", # Emacs auto-save
".#*", # Emacs lock files
"*.tmp", # Generic temp files
"*.temp", # Generic temp files
Expand Down

0 comments on commit 8ee8279

Please sign in to comment.