VSCodeTriageBot / testissues

Clone of the vscode issue stream.
36 stars 22 forks source link

built-in emmet extension is not working properly with "editor.fontLigatures": true #48705

Open VSCodeTriageBot opened 3 days ago

VSCodeTriageBot commented 3 days ago

Does this issue occur when all extensions are disabled?: Yes/No Yes

Steps to Reproduce:

  1. Use a font that supports Ligatures, e.g. JetBrains Mono
  2. set "editor.fontLigatures": true
  3. use Emmet .e.g. "table->thead"

I expect:

<table>
  <thead></thead>
</table>

I get:

<table->
  <thead></thead>
</table->