본문 바로가기

TOOL

[VSCode] 스니펫 설정

728x90

코멘트나 고정된 멘트를 사용할 때 스니펫에 저장해두면 편리하다.

왼쪽 하단 톱니바퀴 > User Snippets > comments.code-snippets 선택 후 하단 처럼 입력.

 

{
	// Place your global 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:
	"Print to console": {
		"scope": "html, javascript, scss, css, *, text, c, plaintext",
		"prefix": "do",
		"body": [
			"@기획자",
			"퍼블리싱 작업 완료했습니다.",
			"작업내용 본문 확인 부탁드립니다.",
			"이상입니다. 감사합니다.",
			"",
			"cc. @파트장 @디자인작업자"
		],
		"description": "dooray mention"
	},
	"Print to console2": {
		"scope": "html, javascript, scss, css, *, text, c, plaintext",
		"prefix": "edit",
		"body": [
			"@기획자",
			"퍼블리싱 수정 반영하였습니다. 아래 수정사항 참고 부탁드립니다.",
			"[작업파일]",
			"/",
			"/",
			"",
			"주석내용: 231018 수정",
			"",
			"이상입니다. 감사합니다.",
			"",
			"cc. @파트장 @디자인작업자"
		],
		"description": "dooray mention"
	},
	"Print to console3": {
		"scope": "html, javascript, scss, css, *, text, c, plaintext",
		"prefix": "root",
		"body": [
			"작업경로",
			"/event",
			"URL",
			"https://~",
		],
		"description": "dooray root"
	}
}

 

주의점은 key 이름을 다르게 설정해야한다.

"Print to console", " Print to console2" ... 이런식으로

😊