Home > Software engineering >  VS code Emmet multiplying code not working in html
VS code Emmet multiplying code not working in html

Time:07-10

I have started to use Visual Studio Code and am having issue's with Emmet.

When I type in the code ul>li and hit tab to expand, it expands. But when I try to multiply the code like ul>li*3, it does not expand and I get no suggestion for that abbreviation. I have added "emmet.triggerExpansionOnTab": true to the json file, and that did nothing, and I have restarted all extensions with the restart extension host command.

All suggestions on how to fix this issue are appreciated.

CodePudding user response:

Yes, I am facing this issue too since latest update.

Somehow the solution I have got is : You can check the box “Emmet: Use Inline Completions” In settings by typing “emmet” in the setting’s search. After checking the box You can see the suggestion and choose it by pressing the tab.

This is the solution I have got till now but hoping that we could have the previous version back.

  • Related