mirror of
https://github.com/ryanoasis/nerd-fonts.git
synced 2024-12-25 20:18:01 +02:00
font-patcher: Fix escaping fix
[why] With Terminess the regex needs to match literal parens, this has been misunderstood with the last commit. [how] Revert the previous commit for Terminess, and use a raw string as solution instead (because we usually use raw strings for regexes). Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
This commit is contained in:
parent
4ca887fce6
commit
edbce6f1e3
@ -211,7 +211,7 @@ class FontnameTools:
|
||||
( '(.*dyslexic ?m)ono', r'\1'), # Open Dyslexic Mono -> Open Dyslexic M
|
||||
( '(overpass ?m)ono', r'\1'), # Overpass Mono -> Overpass M
|
||||
( '(proggyclean) ?tt', r'\1'), # Remove TT from ProggyClean
|
||||
( '(terminess) ?(ttf)', r'\1'), # Remove TTF from Terminus (after renamed to Terminess)
|
||||
( r'(terminess) ?\(ttf\)', r'\1'), # Remove TTF from Terminus (after renamed to Terminess)
|
||||
( '(.*ne)on', r'\1'), # Monaspace shorten face name
|
||||
( '(.*ar)gon', r'\1'), # Monaspace shorten face name
|
||||
( '(.*kr)ypton', r'\1'), # Monaspace shorten face name
|
||||
|
Loading…
Reference in New Issue
Block a user