diff --git a/README.md b/README.md index e3425e9..e508f9b 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ _Complete_ includes these symbols additionally: ### How is Delugia special? Compared with other patched versions of Cascadia you will find * Backtick char `` ` `` working in ligature enabled environments -* Added symbols ``≢`` (0u2262) and ``≣`` (0u2263) used with some popular Powerline setups +* Added symbols ``≢`` (0u2262), ``≣`` (0u2263), and ``❯`` (0u276F) used with some popular Powerline setups ### How to use You can download the patched font from the [Releases page](https://github.com/adam7/delugia-code/releases) of this repo and install them as you would any other font. Once installed the font can be referenced as `Delugia Nerd Font`. So if, for example, you want to use it in Windows Terminal you should add this line to your profiles.json diff --git a/extract-extra-glyphs b/extract-extra-glyphs index d26ede8..c5d9055 100644 --- a/extract-extra-glyphs +++ b/extract-extra-glyphs @@ -1,5 +1,6 @@ Open("src/glyphs/Hack-Regular.ttf"); SelectAll(); SelectFewer(0u2262,0u2263); +SelectFewer(0u276F); Clear(); Generate("src/glyphs/SomeExtraSymbols.otf");