-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
File order matters. Files can be overwritten unexpectedly. #39
Comments
I just royally messed up, running into this issue. My fault for using this on "production" data, but watch out when using this little tool for changing a sequence a step up or down. |
I destroyed multiple (thankfully not important) files because of this. For now I switched to |
I ran into this and was also annoyed, kind of brute force fixed it, probably not a great implementation: |
I think
This way, you can rename/reorder/etc. fearlessly, knowing that each file will be associated correctly. Each labelled line will always be statically associated with the original file path, so there's zero need for the program to make guesses. |
Steps to reproduce:
for i in $(seq 0 9); do touch "file ($i).txt"; done
vimv *
file (10).txt
😢The text was updated successfully, but these errors were encountered: