나만의 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
  • 자바
  • 자바스크립트
  • 파이썬
  • CSS
    ....
    자바스크립트를 입력해 봅시다.


  • {
        // ↓ 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.
    
    
    1. Make a file index.js
    2. use the prefix to type the snippet.
    3. type log and hit enter.

    파일 이름, 폴더 이름, 커서 위치와 같은 더 많은 기능을 스니펫에 변수를 추가하여 스니펫에 추가할 수도 있습니다.


    VsCode 스니펫 문서에서 스니펫의 더 많은 변수를 읽으십시오.


    이것으로 만들 스니펫을 공유하십시오.



    읽어 주셔서 감사합니다.
    스니펫을 모두와 공유하세요.
    당신이 좋아하는 주제에 대한 의견.

    🤝🏾연결:
    트위터: 🕊️
    Github: 🐧 @theabhayprajapati
    링크드인: 📌
    유튜브: 📺

    좋은 웹페이지 즐겨찾기