nizienko / property_switcher

An Idea plugin that can toggle values in local property files. This is useful when running tests in different environments.
4 stars 2 forks source link

Support for multiline values #6

Closed kool79 closed 1 year ago

kool79 commented 1 year ago

support for values defined on multiple lines. Current revision (0.9.2) removes all extra lines and corrupts properties. The file

 key1 = value on \
   multiple lines
 key2 = another value

becomes:

 key1 = value on \
 key2 = another value

and in this file we have only 1 property "key1" with a value " value on key2 = another value" i.e. we corrupted 2 properties: key1 and key2