wbond / sublime_alignment

Easy alignment of multiple selections and multi-line selections
http://wbond.net/sublime_packages/alignment
522 stars 110 forks source link

Space is not inserted for `alignment_space_chars` #97

Open KES777 opened 1 year ago

KES777 commented 1 year ago
    "alignment_chars": ["=", "AS" ],
    "alignment_space_chars": ["=", "AS" ]

Next text:

   , p.Tot_Amt       AS LastAmount
   , PriorMonth.Total  AS PriorMonthPayment
   , CurrMonth.Total AS CurrMonthPayment

Is aligned as:

   , p.Tot_Amt       AS LastAmount
   , PriorMonth.TotalAS PriorMonthPayment
   , CurrMonth.Total AS CurrMonthPayment

Expected:

   , p.Tot_Amt        AS LastAmount
   , PriorMonth.Total AS PriorMonthPayment
   , CurrMonth.Total  AS CurrMonthPayment

This is the SQL.