Hi,
we place some of our configuration in .property files. By default they are opened with the “MyEclipse Properties Editor”.
As part of our configuration we do save sql strings in thoose files as well, which can be quite long, so we break them up over several lines.
When editing properties we encounter the following behaviour. We always use the “Source” view.
myproperty=long line 1 \
long line 2 \
long line 3
After saving and opening the file we see:
myproperty=long line 1 long line 2 long line 3
long line 2 \
long line 3
sometimes the third lines adds to the second one as well.
This reformatted file leads to confusion and makes the properties unmaintainable.
How can this behavior be avoided?
Kind regards
clavis_uhe