Skip to content
This repository has been archived by the owner on Apr 13, 2022. It is now read-only.

Latest commit

 

History

History
56 lines (41 loc) · 1.07 KB

CHANGELOG.md

File metadata and controls

56 lines (41 loc) · 1.07 KB

1.1.7

  • Fix #8, '==' is interpreted as two '='.

1.1.6

  • Enhance the logic of finding which op to be aligned.

1.1.5

Bug

  • Fix plugin not working when language config is present in user settings, but it doesn't include better-align settings.

1.1.4

Bug

  • Fix #5, += was changed to =
  • Fix #4, double slash after colon is being recognized as comment. e.g. http://

1.1.3

What's New

  • Always align with assignment operator if it's presented.
  • User can stop better-align from modifying the indentation ( specified in settings : alignment.indentBase )
  • Allow space to the sibling token ( check out README.md to know how to enable this mode ):
// Before
export fdafas=fdasfas;
export fs=fasfdsfadsa;
export fadsfasf=fadsjfkdasf;
export fadsfa=fadfdasfadsf;

// After
export   fdafas=fdasfas;
export       fs=fasfdsfadsa;
export fadsfasf=fadsjfkdasf;
export   fadsfa=fadfdasfadsf;

1.1.2

Bug

  • Don't align '->', because it's commonly used as attribute access operator.

1.1.1

What's New

  • Arrows (-> =>) can be aligned