Short Emmet缩写不适用于css / scss

时间:2016-09-13 11:15:41

标签: css visual-studio-code emmet

  • VSCode版本:1.5.2
  • 操作系统版本:Ubuntu 16.04
  • 我的settings.json

    {
      "editor.snippetSuggestions": "top",
      "editor.tabCompletion": true
    }
    

    当我尝试在CSS / SCSS中使用Emmet快捷方式时,例如:

    我点击标签完成,我明白了:

而不是color,与bg类似的行为。我确实找到了解决方案:"editor.quickSuggestionsDelay": "500"。但是想知道这个问题是否有更好的解决方案。

1 个答案:

答案 0 :(得分:1)

我建议您使用以下内容更改密钥绑定:

(菜单:首选项>键盘快捷键)

{ "key": "enter", "command": "acceptSelectedSuggestion",
                  "when": "editorTextFocus && suggestWidgetVisible" },
{ "key": "tab", "command": "editor.emmet.action.expandAbbreviation",
                  "when": "config.emmet.triggerExpansionOnTab && editorTextFocus && !editorHasSelection && !editorReadonly && !editorTabMovesFocus" }

唯一的问题是,要接受来自智能感知的任何建议,从现在开始,您必须使用enter代替tab