JetBrains / JetBrainsMono

JetBrains Mono – the free and open-source typeface for developers
https://jetbrains.com/mono
SIL Open Font License 1.1
10.57k stars 298 forks source link

I want to use "alternate character set", but not "Ligatures for Code" in VSCode #664

Closed kalpeshdhotre closed 5 months ago

kalpeshdhotre commented 5 months ago

I want to use "alternate character set", but not "Ligatures for Code" in VSCode

if i mention below setting in, "Ligature for Code" also gets ON. how do i disabled just Ligature for Code only - Still able to use alternate characters?

"editor.fontLigatures": "'zero', 'ss01', 'ss19', 'cv01', 'cv02', 'cv03', 'cv04', 'cv07', 'cv09', 'cv16', 'cv18', 'cv20'",

above setting turns ON Ligature also .

kalpeshdhotre commented 5 months ago

I found solution to above problem in https://github.com/JetBrains/JetBrainsMono/issues/652#issue-1991225773

syntax is ", 0" disables - so putting zero after "calt" disables all ligature except all other mention in settings. edited setting are . . "editor.fontLigatures": "'calt' 0, 'zero', 'ss01', 'ss19', 'cv01', 'cv02', 'cv03', 'cv04', 'cv07', 'cv09', 'cv16', 'cv18', 'cv20'",