You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 6, 2021. It is now read-only.
There is already a feature to detect when a file is changed by another program and reload it - after confirmation if there were unsaved edits, or automatically and silently if there weren't.
But it is not working right when multiple consecutive changes happen in a very short interval. For example, the rapid changes from git stash;git pull; git stash pop would sometimes cause the version after the stash to be loaded instead of the final version. This can cause loss of important edits if not noticed.
I guess adding some delay to the reload so that file changes are sure to have settled down can solve this.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
There is already a feature to detect when a file is changed by another program and reload it - after confirmation if there were unsaved edits, or automatically and silently if there weren't.
But it is not working right when multiple consecutive changes happen in a very short interval. For example, the rapid changes from
git stash;git pull; git stash pop
would sometimes cause the version after the stash to be loaded instead of the final version. This can cause loss of important edits if not noticed.I guess adding some delay to the reload so that file changes are sure to have settled down can solve this.
The text was updated successfully, but these errors were encountered: