I have a QOL issue that's really irking me where if I were to press the keys (a key => tab key) or (p key => tab key) and even (li => tab) I don't get the a, p or li HTML tags that want in .blade.php files. The emmet still exists, but the blade snippets are being prioritized which is not what I want.
I've tried jamming a bunch of settings in the settings.json file:
"emmet.includeLanguages": {
"blade": "html",
"blade.php": "html",
"php": "html",
},
"emmet.syntaxProfiles": {
"blade": "html",
"blade.php": "html",
"php": "html",
},
"emmet.showExpandedAbbreviation": "always"