VSCode Settings Problem on macOS
My settings.json file:
"editor.fontLigatures": "'calt', 'liga', 'dlig', 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08'", "editor.fontFamily": "'Monaspace Argon'"
I read your Readme markdown but i didn't see any ligatures styles in my visual studio code. 😒
How can i resolve this problem?
I met a similar but not the same prob. My settings:
"editor.fontFamily": "'Monaspace Neon', monospace",
"editor.fontLigatures": "'calt', 'liga', 'dlig', 'ss06'",
However, I got nearly all the ligatures:
Is there sth wrong with my settings?
MacOS Sonoma 14.3 + VSCode 1.86.2 (Universal)
I met a similar but not the same prob. My settings:
"editor.fontFamily": "'Monaspace Neon', monospace", "editor.fontLigatures": "'calt', 'liga', 'dlig', 'ss06'",However, I got nearly all the ligatures:
Is there sth wrong with my settings?
MacOS Sonoma 14.3 + VSCode 1.86.2 (Universal)
Seems solved by removing the option for discretionary ligatures:
"editor.fontFamily": "'Monaspace Neon', monospace",
"editor.fontLigatures": "'calt', 'liga', 'ss06'",
It showed exactly what I wanted:
@czorkol is this still an issue with the latest updated fonts? You'll need to add ss09 to your settings to have all ligatures enabled.
Is there sth wrong with my settings?