daviduuang / ini-for-vscode

Provide outline view and section folding for INI file.
GNU General Public License v3.0
18 stars 7 forks source link

multiline values not folding if last key #3

Open pwoolvett opened 5 years ago

pwoolvett commented 5 years ago

this folds ok

[mysection]
splitkey =
  value1,
  value2
firstkey = 12

[othersection]
mumbo = jumbo

this does not

[mysection]
firstkey = 12
splitkey =
  value1,
  value2

[othersection]
mumbo = jumbo