Miene,
I tried your trick of making my Eclipse Indigo use the javaw VM, but it shit the bed…
C:\Coding\eclipse\eclipse.exe -vm "C:\Program Files (x86)\Java\jre6\bin\javaw.exe"
Googling a little bit revealed this useful page:
http://stackoverflow.com/questions/4945178/cannot-run-eclipse-jvm-terminated-exit-code-13
The short version is I’m running Windows7 64-bit, so I have to change the line to be:
C:\Coding\eclipse\eclipse.exe -vm "C:\Program Files\Java\jre6\bin\javaw.exe"
Note the lack of (x86). This seems obvious in retrospect, but at the time, I didn’t even know there were TWO different jre6\bin trees on my computer!
-Daevid.com