be5invis / Iosevka

Versatile typeface for code, from code.
http://be5invis.github.io/Iosevka
SIL Open Font License 1.1
19.3k stars 577 forks source link

Ligatures are broken in vscode #1364

Closed nightire closed 2 years ago

nightire commented 2 years ago

With the below settings in VSCode (version 1.67.2):

{
  "editor.fontFamily": "Iosevka SS15, Sarasa Mono SC",
  "editor.fontLigatures": true,
}

all ligatures are broken, for example, this:

image

should be:

const sizes = this.propotions.map((propotion) => availableSize * proportion)

and this:

image

should be:

if (typeof pane !== 'undefined') {

and this:

image

should be:

// console.log(engine);
// console.table(event);

alexeyten commented 2 years ago

Have you restarted VS code?

nightire commented 2 years ago

Have you restarted VS code?

You're right, and I didn't! I have executed the command: Developer: reload window, but turns out it's not the same as restarting the application.

Now it works as expected, thank you!