From 5f772b1059717f0b9f799d155cd598254b220569 Mon Sep 17 00:00:00 2001 From: Fini Jastrow Date: Thu, 13 Feb 2020 07:52:16 +0100 Subject: [PATCH] Add 0u276F from Hack [why] 0u276F => Heavy right-pointing angle quotation mark ornament This is another frequently used glyph. [how] Just add to list of to-copy glyphs. Fixes: #25 Signed-off-by: Fini Jastrow --- README.md | 2 +- extract-extra-glyphs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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");