cwtools / cwtools-vscode

A VS Code extension providing language server support for paradox script files using cwtools
Other
88 stars 12 forks source link

Auto correction removes "hsv" before brackets #47

Open qt911025 opened 3 years ago

qt911025 commented 3 years ago

Auto correction of CWTools always remove "hsv" before brackets, makes

color = hsv {
  30
  0.44
  0.58
}

into

color = {
  30
  0.44
  0.58
}

The former syntax is legal. It shouldn't be corected.