mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
feat: sort filenames in cmd_read_only for consistent behavior
This commit is contained in:
parent
dd6124fa64
commit
6181fe5efa
1 changed files with 1 additions and 1 deletions
|
@ -1166,7 +1166,7 @@ class Commands:
|
|||
return
|
||||
|
||||
filenames = parse_quoted_filenames(args)
|
||||
for pattern in filenames:
|
||||
for pattern in sorted(filenames):
|
||||
# Expand tilde for home directory
|
||||
expanded_pattern = expanduser(pattern)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue