Reputation: 4159
Is there a way to disable sublime text file reload dialog from popping up when the content of the current file has changed due to some modifications(modification + save from another text editor).
sublime text file reload dialog is this:
Thank you for your suggestions.
Upvotes: 3
Views: 3597
Reputation: 1372
As far as I know, Sublime will prompt only if the file has unsaved changes by default.
If you get a prompt even if the file hasn't been modified, you could set always_prompt_for_file_reload
to false
in your user settings.
// Always prompt before reloading a file, even if the file hasn't been
// modified. The default behavior is to automatically reload a file if it
// hasn't been edited. If a file has unsaved changes, a prompt will always
// be shown.
"always_prompt_for_file_reload": false
Upvotes: 8