Description
- VSCode Version: 1.18.1
- OS Version: Windows 10 Home
Steps to Reproduce:
-
Use emmet text abbreviation with any html tag in a html file. Text within braces must have odd number of apostrophes/quotes:
p{this doesn't work, for me}
-
Attempt to expand abbreviation:
2.1. Try uh, deriving context menu? (Ctrl+Space)
2.2. Running Emmet: Expand Abbreviation
2.3. Adding"emmet.triggerExpansionOnTab": true
and hitting tab -
Use with concatenation (odd number of quotes in at least one of the braces):
p{this doesn't work, for me}+div{'this' doesn't work too}
and repeat step 2
Reproduces without extensions: Yes
Expected results
for steps
2: <p>this doesn't work, for me</p>
3: <p>this doesn't work, for me</p><div>'this' doesn't work too</div>
Actual results
for steps:
2.1: Expand abbreviation doesn't appear
2.2: Error Failed to expand abbreviation
2.3: Error Failed to expand abbreviation
(errors...)
3: <p>this doesn't work, for me}+div{'this' doesn't work too</p>
(weird expansions)