VS代码方式将HTML Emmet优先于Laravel Blade代码片段?

问题描述 投票:2回答:1

我有一个QOL问题,如果我要按以下键(一个键=> Tab键或(p键=> Tab键),甚至(li => tab键),我什至感到不舒服, .blade.php文件中需要的a,p或li HTML标记。 Emmet仍然存在,但是刀片片段的优先级不是我想要的。

我尝试在settings.json文件中干扰很多设置:

"emmet.includeLanguages": {
  "blade": "html",
  "blade.php": "html",
  "php": "html",
},
"emmet.syntaxProfiles": {
  "blade": "html",
  "blade.php": "html",
  "php": "html",
},
"emmet.showExpandedAbbreviation": "always"
html visual-studio-code laravel-blade code-snippets emmet
1个回答
0
投票

在settings.json文件中添加"editor.snippetSuggestions": "bottom"

© www.soinside.com 2019 - 2024. All rights reserved.