kind of trivial question but here it goes. I can\'t figure out why VS Code autocompletes (with tab) all html tags correctly while php tag not. When i type \"php\" and hit t
In Visual Studio Code, go to File > Preferences > User Snippets > html.json file and then paste the following code:
File > Preferences > User Snippets > html.json
"php": { "prefix": "php", "body": [ "", "$2" ], "description": "php tag" }