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的占位符是连接的。
相关推荐
星幻元宇VR25 分钟前
VR航空航天科普设备【VR时空直升机】
科技·学习·安全·生活·vr
_李小白32 分钟前
【android opencv学习笔记】Day 2: Mat类(图片数据结构体)
android·opencv·学习
harder3211 小时前
RMP模式的创新突破
开发语言·学习·ios·swift·策略模式
excel2 小时前
如何解决 Nuxt DevTools 中关于 unstorage 包的报错
前端
Rust研习社2 小时前
使用 Axum 构建高性能异步 Web 服务
开发语言·前端·网络·后端·http·rust
C澒2 小时前
AI 生码 - API2Code:接口智能匹配与 API 自动化生码全链路设计
前端·低代码·ai编程
浔川python社2 小时前
HTML头部元信息避坑指南技术文章大纲
前端·html
IT_陈寒2 小时前
SpringBoot配置加载顺序把我坑惨了
前端·人工智能·后端
kyriewen2 小时前
Next.js部署:从本地跑得欢,到线上飞得稳
前端·react.js·next.js
Moment3 小时前
面试官:给 llm 传递上下文,有哪几个身份 role ❓❓❓
前端·后端·面试