Home > Software design >  Some Emmet abbrevirations in VSC not working, like'!' or using '*'
Some Emmet abbrevirations in VSC not working, like'!' or using '*'

Time:07-09

Every other snippets are working, but ! tab is not.

! snippet is not working

other snippet is working

Sorry i ment Visual Studio Code. Im using 1.69.0 It was working before, but i wanted to add net html file, named that new.html, cuz i had index.html already. After that this script stopped working on every html file, but other scripts like "a", "div" etc. is working

CodePudding user response:

It is a known issue with the v1.69 release, see html emmet suggestion not automatically display or https://github.com/microsoft/vscode/issues/154517 for example. Lots of issues on github on ! and * not working.

So the emmet snippet will not appear automatically when you type !, but you can press Ctrl/Cmd Space (which is the command Trigger Suggest) to make it appear and select normally.

Try Ctrl/Cmd Space for anything emmet-related nnnnnot working in vscode v1.69.

You could also go back to v1.68 to solve the issue.

  • Related