Open datho7561 opened 10 months ago
Given the following properties file:
hjkl = 1234 asdf = ${|}
|
${hjkl}
EXPECTED: asdf = ${hjkl|}
asdf = ${hjkl|}
ACTUAL: asdf = | (content is deleted)
asdf = |
That's weird. it seems to be caused by property keys without a .. I wonder if it's a regression caused by https://github.com/eclipse/lsp4mp/pull/433
.
Given the following properties file:
|
${hjkl}
suggestionEXPECTED:
asdf = ${hjkl|}
ACTUAL:
asdf = |
(content is deleted)