kika / fixedsys

Fixedsys Excelsior font with programming ligatures
982 stars 50 forks source link

Add ligature for --> (HTML end comment token) #4

Closed ForNeVeR closed 7 years ago

ForNeVeR commented 7 years ago

Currently --> looks too ugly like this: "-→" (note that - and -> are aligned differently). Please add a ligature for -->. This character sequence is often used in HTML documents, and someone could treat it as a fancy C "going to" operator in statements like that:

int i = 100;
while (i --> 0) {
    printf("%d", i);
}

(That it's really not a C operator, but a pair of different tokens, but whatever.)