I'm looking for a configuration or plugin for eclipse that automatically saves files (so I don't have to use Ctrl+S). It could do it on lost focus or over some period of time. I think I saw something like that (I know IDEA has it), but I cant find it now.
|
|
|
01 added:
... and you are right! Eclipse plugin saveDirtyEditor should do just what you need. You will get a new preference page under
, allowing you to save dirty files like ' Without additional plugin, though, Eclipse does not support natively that feature. The closest could be:
That way, each time you hit CTRL+B for actually building your sources, they would be saved. Again, without achieving exactly what you are looking for, you also have:
Note: the difference between IntelliJ IDEA and eclipse is the "compile on save" feature: As mentioned in the IDEA FAQ:
However, with Eclipse, the "build on save" is activated by default, hence the absence of that particular feature. |
|||||||||
|
|
http://code.google.com/p/eclatosa/ "Saves all open editors in eclipse when deactivating the eclipse window (like in IntelliJ)" |
|||
|
|
|
I wrote a plugin a long time ago to do this that still seems to work: http://www.stateofflow.com/projects/71/save-me It saves the editor when it loses focus. However, if you switch away from eclipse it doesn't notice. |
|||
|
|
