The place for ad hoc chat about Nerd Fonts (Patched Fonts collection and Patcher)
set guifont=Anonymice_Nerd_Font_Mono:h14:cDEFAULT:qDEFAULT
gives me:
g
s in third line have their bottom part cut off
ls
?
nerd-fonts
repo, and I searched the chat history here, both with no results, so I apologize if this is already covered somewhere and I just missed it somehow. The "complete" patched version of Cascadia Code seems to be missing the standard box-drawing characters. Is this any known issue? And is there a standard procedure for fixing this kind of problem? I would be happy to take a crack at it myself.
FiraCode NF
, or is there another name for the fonts?
Hi @ryanoasis , did you consider switching to devopicon instead of devicon ? devicon is unmaintained. see vorillaz/devicons#133
Regarding this, I'd love to add to the set of icons in vorillaz/devicons, but sadly it seems like that's a dead end. @ryanoasis - assuming you don't accept one-off icons, is there a process for adding a new icon set to nerd-fonts?
Hi @ryanoasis , did you consider switching to devopicon instead of devicon ? devicon is unmaintained. see vorillaz/devicons#133
Regarding this, I'd love to add to the set of icons in vorillaz/devicons, but sadly it seems like that's a dead end. @ryanoasis - assuming you don't accept one-off icons, is there a process for adding a new icon set to nerd-fonts?
To add new icons I looked at the fontpatcher to see what URLs the patcher takes glyphs from, and got my glyph added to the upstream. I thought that I had to run the patcher again but that didn't work as I posted above. SO I don't know how to get changes from upstream into the main nerdfonts project, but I THINK that for local use you can just edit the font patcher and put your own git url there for your new icons.
Hi everyone, I have a quick question about using the font-patcher
script for patching fonts. I have a few icons I want to add in addition to the standard glyphs nerd font adds. When using the --custom
flag like so:
~/nerd-fonts > fontforge -script font-patcher '.../Input-Regular.ttf' --custom '<path-to-font>/new-icons.tff'
I get the following error:
The requested file, new-icons.ttf, does not exist
Traceback (most recent call last):
File "font-patcher", line 925, in <module>
main()
File "font-patcher", line 919, in main
patcher.patch()
File "font-patcher", line 88, in patch
symfont = fontforge.open(__dir__
+ "/src/glyphs/" + patch['Filename'])
OSError: Open failed
Is this normal behavior? If I add new-icons.tff
to the .../src/glyphs/
folder in the cloned repo then it works fine, but is this the expected way to use the font-patcher? Thanks