vscode 自动补全代码
时间: 2023-11-06 12:03:14 浏览: 252
VSCode是一款功能强大的代码编辑器,提供了自动补全(智能提示)功能,可以极大地提高编码效率。通过安装相关插件和进行一些配置,你可以启用自动补全功能。
首先,你需要安装插件"HTML CSS Support",然后在设置中添加以下代码:
```
"editor.parameterHints": true,
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
}
```
这样设置之后,当你在编写HTML代码时,VSCode会智能提示CSS类名。
另外,如果你想要代码补全提示,你可以在Vue配置中添加代码段。例如:
```
{
"Print to console": {
"prefix": "vue",
"body": [
"<template>",
" <div></div>",
"</template>",
"<script setup>",
"</script>",
"<style scoped lang=\"less\">",
"</style>",
"$2"
],
"description": "Log output to console"
}
}
```
以上是在Vue中配置的一个示例,你可以根据自己的需要进行相应的配置。
阅读全文