我的settings.json
{
"editor.snippetSuggestions": "top",
"editor.tabCompletion": true
}
而不是color
,与bg
类似的行为。我确实找到了解决方案:"editor.quickSuggestionsDelay": "500"
。但是想知道这个问题是否有更好的解决方案。
答案 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
。