나만의 VsCode 스니펫 만들기
나만의 VsCode 스니펫 만들기
스니펫은 코드를 빠르게 생성하는 데 매우 유용하지만 코드를 만드는 것이 더 굉장하다는 것을 알고 있습니까?
VsCode에서 나만의 스니펫 만들기
1. Open VsCode and type
Press Ctrl + Shift + P to Open Command Palette in VsCode.
1. type Configure User Snippets
💥 들어가다
1. type Select the language you want to create snippets for
1. Open VsCode and type
1. type Configure User Snippets
1. type Select the language you want to create snippets for
....
자바스크립트를 입력해 봅시다.
{
// ↓ this is name of snippet
"Print to console": {
// ↓ this is prefix the command will be typed to use it.
"prefix": "log",
// ↓ this is the snippet itself, body of the snippet
"body": [
// $1 is the placeholder for the first argument, $number defines tabindex for the snippet.
"console.log('$1');",
"$2"
],
// ↓ this is the description of the snippet.
"description": "Log output to console"
}
}
1. type Save the snippet/ Close the file.
- Make a file index.js
- use the prefix to type the snippet.
- type log and hit enter.
파일 이름, 폴더 이름, 커서 위치와 같은 더 많은 기능을 스니펫에 변수를 추가하여 스니펫에 추가할 수도 있습니다.
VsCode 스니펫 문서에서 스니펫의 더 많은 변수를 읽으십시오.
이것으로 만들 스니펫을 공유하십시오.
읽어 주셔서 감사합니다.
스니펫을 모두와 공유하세요.
당신이 좋아하는 주제에 대한 의견.
🤝🏾연결:
트위터: 🕊️
Github: 🐧
@theabhayprajapati
링크드인: 📌
유튜브: 📺
Reference
이 문제에 관하여(나만의 VsCode 스니펫 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/theabhayprajapati/make-your-own-vscode-snippets-4h1d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)