Eclipse is creating a new "Run Configuration" every time that I execute a Scala program. The problem with this is that I need to customize the default Run Configuration (need to change the working path). So the first time I create and customize a Run Configuration everything works fine, but any subsequente attempts to run the Scala file with "Run As" -> "Scala application" will fail since my custom settings are lost and the Scala program is executed with a new default Run Configuration.
The following figure illustrates how the "Run Configurations" dialog looks like after executing my scala application three times. Only the first Run Configuration has the desired settings:
How can I configure Eclipse to use always the same Run Configuration when running the same Scala file ? (I mean, without having to open the the "Run Configurations..." dialog every time).