dragos / typesafe-config-eclipse

An Eclipse plugin for Typesafe Config files
Apache License 2.0
23 stars 6 forks source link

Syntax error when using substitution to prepend to an array #21

Open ragnaroh opened 6 years ago

ragnaroh commented 6 years ago

If you have the following config you get a syntax error on the second line saying "no viable alternative at input '['".

foo: [1, 2]
bar: ${foo} [3]
mkurz commented 6 years ago

Can you use equals? Like:

foo = [1, 2]
bar = ${foo} [3]
ragnaroh commented 6 years ago

Same error message, I'm afraid.

ragnaroh commented 6 years ago

I can add that I'm using Eclipse Oxygen.2 Release (4.7.2)