VSCode Snippet
- ์์ฃผ ์ฐ๋ ์ฝ๋ ์กฐ๊ฐ
๋ฑ๋ก
Preferences: Configure User Snippets
New Global Snippets file...
- Snippet File ์ด๋ฆ ์
๋ ฅ
- ํ
ํ๋ฆฟ ์ํ ๋ณต์ฌ
"Print to console": {
"scope": "javascript,typescript",
"prefix": "log",
"body": [
"console.log('$1');",
"$2"
],
"description": "Log output to console"
}
์ฌ๊ธฐ์ ์ ์ญ ์ค๋ํซ์ ๋ฐฐ์นํฉ๋๋ค. ๊ฐ ์ค๋ํซ์ ์ค๋ํซ ์ด๋ฆ์ผ๋ก ์ ์๋๋ฉฐ
scope(๋ฒ์), prefix(์ ๋์ฌ), body(๋ณธ๋ฌธ) ๋ฐ description(์ค๋ช
)์ด ํ์ํฉ๋๋ค.
scope ํ๋์์ ์ค๋ํซ์ ์ ์ฉํ ์ ์๋ ์ธ์ด์ ์ผํ๋ก ๊ตฌ๋ถ๋ ID๋ฅผ ์ถ๊ฐํฉ๋๋ค.
scope๋ฅผ ๋น์๋๊ฑฐ๋ ์๋ตํ๋ฉด ์ค๋ํซ์ด ๋ชจ๋ ์ธ์ด์ ์ ์ฉ๋ฉ๋๋ค.
prefix๋ ์ค๋ํซ์ ํธ๋ฆฌ๊ฑฐํ๋๋ฐ ์ฌ์ฉ๋๋ฉฐ ๋ณธ๋ฌธ์ด ํ์ฅ๋๊ณ ์ฝ์
๋ฉ๋๋ค.
๊ฐ๋ฅํ ๋ณ์๋ ๋ค์๊ณผ ๊ฐ์ต๋๋ค.
$1, $2 ํญ ์ ์ง, $0 ์ต์ข
์ปค์ ์์น, ${1:label}, ${2:another} ์๋ฆฌ ํ์์.
๋์ผํ ID๋ฅผ ๊ฐ์ง ์๋ฆฌ ํ์์๊ฐ ์ฐ๊ฒฐ๋ฉ๋๋ค.