LettError / glyphNameFormatter

Generate list of glyphnames from unicode names.
BSD 3-Clause "New" or "Revised" License
75 stars 9 forks source link

rename arrowuprighttip to arrowrightuptip #98

Closed arialcrime closed 2 years ago

arialcrime commented 2 years ago

Previously the proposed name for uni21B1 was arrowuprighttip. When looking at similar arrows in the list (see below), I think it makes sense that it is called arrowrightuptip. Moving line 69 to 71 in rangeProcessors/arrows.py fixes this, without causing any other changes.

Previously:

arrowleftuptip                                    -                             -                             21B0   ↰    UPWARDS ARROW WITH TIP LEFTWARDS
arrowuprighttip                                   -                             -                             21B1   ↱    UPWARDS ARROW WITH TIP RIGHTWARDS
arrowleftdowntip                                  -                             -                             21B2   ↲    DOWNWARDS ARROW WITH TIP LEFTWARDS
arrowrightdowntip                                 -                             -                             21B3   ↳    DOWNWARDS ARROW WITH TIP RIGHTWARDS

Now:

arrowleftuptip                                    -                             -                             21B0   ↰    UPWARDS ARROW WITH TIP LEFTWARDS
arrowrightuptip                                   -                             -                             21B1   ↱    UPWARDS ARROW WITH TIP RIGHTWARDS
arrowleftdowntip                                  -                             -                             21B2   ↲    DOWNWARDS ARROW WITH TIP LEFTWARDS
arrowrightdowntip                                 -                             -                             21B3   ↳    DOWNWARDS ARROW WITH TIP RIGHTWARDS
LettError commented 2 years ago

Thank you!