输入 div.row 时意外的代码完成

unexpected code completion when typing div.row

我使用 bootstrap,在键入 html 时,我希望 div.row 的 emmet 补全为:

<div class= "row">
<div> 

我得到的是:

显示:.行;

这是我的设置,试图阻止非 emmet 扩展。我该怎么做才能获得我想要的扩展?

"html.suggest.angular1": false,
"html.suggest.ionic": false,
"html.suggest.html5": false,
"editor.wordBasedSuggestions": false,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.acceptSuggestionOnEnter": false,
"editor.suggestOnTriggerCharacters": false,
"editor.quickSuggestions": {
    "other": false,
    "comments": false,
    "strings": false

我在一个项目的设置 json 中出错。当我修复错误时,emmit 现在正在工作。