VSCode中的CSS / HTML建议,例如WebStorm中的

时间:2019-01-18 21:49:46

标签: visual-studio-code settings webstorm

我对VSCode CSS / HTML建议有疑问。我希望它可以像在WebStorm中一样工作。

第一个问题:当我输入整个属性名称时,没有任何建议。

image

但是,当我键入di并选择正确的属性并按tab / enter时,我有建议,但在WebStorm中总是这样。即使我再次按退格键和空格键。在退格后的VSCode中,我再也看不到任何建议。

image

第二个问题:在HTML中我看不到任何建议(保存了.css)

image

我使用的扩展名: 用于CSS的IntelliSense,HTML,Slim和SCSS中的SCSS类名称 HTML CSS支持 SCSS IntelliSense 这些是我的用户设置。

{
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.folders.theme": "specific",
"material-icon-theme.hidesExplorerArrows": false,
"material-icon-theme.folders.color": "#90a4ae",
"editor.formatOnSave": true,
"editor.wordWrap": "on",
"eslint.enable": false,
"git.autofetch": true,
"git.enableSmartCommit": true,
"files.autoSave": "off",
"workbench.editor.enablePreview": false,
"html-css-class-completion.enableEmmetSupport": true,
"trailing-spaces.trimOnSave": true,
"workbench.colorTheme": "Atom One Dark",
"php.validate.run": "onType",
"php.suggest.basic": true,
"editor.formatOnPaste": true,
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
    "blade": "html",
    "javascript": "javascriptreact"
},
"editor.tabCompletion": "on",
"editor.find.autoFindInSelection": true,
"editor.snippetSuggestions": "top"
}

我想知道这是我的配置错误还是缺少扩展名,或者我是否有太多扩展名(21)。

0 个答案:

没有答案