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的占位符是连接的。
相关推荐
陈言必行2 小时前
Unity 性能优化 之 编辑器创建资源优化( 工作流 | 场景 | 预制体)
unity·编辑器·游戏引擎
Hello_Embed4 小时前
STM32HAL 快速入门(二十):UART 中断改进 —— 环形缓冲区解决数据丢失
笔记·stm32·单片机·学习·嵌入式软件
咸甜适中5 小时前
rust语言 (1.88) 学习笔记:客户端和服务器端同在一个项目中
笔记·学习·rust
人工智能训练师5 小时前
Ubuntu22.04如何安装新版本的Node.js和npm
linux·运维·前端·人工智能·ubuntu·npm·node.js
Seveny075 小时前
pnpm相对于npm,yarn的优势
前端·npm·node.js
Magnetic_h6 小时前
【iOS】设计模式复习
笔记·学习·ios·设计模式·objective-c·cocoa
yddddddy6 小时前
css的基本知识
前端·css
昔人'6 小时前
css `lh`单位
前端·css
研梦非凡6 小时前
ICCV 2025|从粗到细:用于高效3D高斯溅射的可学习离散小波变换
人工智能·深度学习·学习·3d
破无差6 小时前
《赛事报名系统小程序》
小程序·html·uniapp