vscode

vscode个人使用过程-仅供个人参考。

vscode代码提示-修改首行为abc的提示解决方法

问题描述:

比如console.log这个常用的打印代码

可是当使用后会发现一个问题,有一个abc的代码提示永远在第一行

解决方法:

vscode设置-->搜索栏输入editor.snippetSuggestions-->选择top

自定义代码片段流程

javascript 复制代码
{
	// Place your 全局 snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and 
	// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope 
	// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is 
	// used to trigger the snippet and the body will be expanded and inserted. Possible variables are: 
	// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. 
	// Placeholders with the same ids are connected.
	// Example:
	"晁阳测试": {
		"scope": "javascript,typescript",
		"prefix": "vv",
		"body": [
			"console.log('$1');",
			"$2"
		],
		"description": "Log output to console"
	}
}
Dart 复制代码
//放置您的全局 此处的片段。每个代码段都定义在一个代码段名称下,并具有范围、前缀、正文和描述在范围字段中添加代码段适用的语言的逗号分隔ID。
	//如果范围为空或被省略,则该片段将应用于所有语言。
    //前缀是什么用于触发摘录,并且正文将被展开和插入。可能的变量包括:
    //$1,$2用于制表位,$0用于最后的光标位置,${1:label},${2:other}用于占位符。
    //具有相同id的占位符是连接的。
相关推荐
moshuying3 小时前
别让AI焦虑,偷走你本该有的底气
前端·人工智能
GIS之路4 小时前
ArcPy,一个基于 Python 的 GIS 开发库简介
前端
可夫小子5 小时前
OpenClaw基础-为什么会有两个端口
前端
喝拿铁写前端5 小时前
Dify 构建 FE 工作流:前端团队可复用 AI 工作流实战
前端·人工智能
喝咖啡的女孩6 小时前
React 合成事件系统
前端
从文处安6 小时前
「九九八十一难」组合式函数到底有什么用?
前端·vue.js
用户5962585736067 小时前
戴上AI眼镜逛花市——感受不一样的体验
前端
yuki_uix7 小时前
Props、Context、EventBus、状态管理:组件通信方案选择指南
前端·javascript·react.js
老板我改不动了7 小时前
前端面试复习指南【代码演示多多版】之——HTML
前端
panshihao7 小时前
Mac 环境下通过 SSH 操作服务器,完成前端静态资源备份与更新(全程实操无坑)
前端