WarWithinMe / better-align

A vscode extension to provide better vertical alignment
Other
75 stars 39 forks source link

Allow alignment configuration per character type #55

Open Nu11u5 opened 4 years ago

Nu11u5 commented 4 years ago

Request:

Allow alignment configurations to be set independently for certain character types to accommodate coding styles.

Case:

Colon property declaration can be left aligned while equals value assignment is right aligned.

var myObject = {
  valueX:    123,
  propertyY: "qwerty"
}

myObject.valueX    = 456;
myObject.propertyY = "dvorak"