-
Notifications
You must be signed in to change notification settings - Fork 193
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
Save editor on focus lost #171
Comments
I don't want such enabled as default. It can cause real trouble when saving during a build or team operation. |
…atform#171) * Fix ClassCastException in TextSearchVisitor.TextSearchJob - TextSearchVisitor.TextSearchJob.processFile() has a catch for FileCharSequenceProvider.FileCharSequenceException and tries to rethrow the exception cause. In the case, where the cause is an IOException, throw the original FileCharSequenceException which is RuntimeException - discovered by eclipse-jdt/eclipse.jdt.ui#436 * Update org.eclipse.search/search/org/eclipse/search/internal/core/text/TextSearchVisitor.java Use Java 17 Co-authored-by: Mickael Istria <[email protected]> --------- Co-authored-by: Mickael Istria <[email protected]>
@jukzi - just curious, if the autosave is enabled, it will anyways trigger the save after the autosave interval right? then what added benefit the |
I'm curious about the bigger story: why does one use auto-save? Is it to prevent from data loss? |
I agree with @mickaelistria , for example notepad++ does a great job at this: it does not even ask if unchanged files should be saved on shutdown. It just already saved it somewhere and keeps bothersome questions away from me if i have to restart my computer. |
Regarding autosave on focus lost, what I often encounter is the following:
So saving is sometimes required to let other things happen so not saving is most of the time not an option anyways... |
It would be great if there is an option in Eclipse to turn on auto-save when the IDE window looses focus.
The text was updated successfully, but these errors were encountered: