📚 [VsCode] 스니펫이 동작하지 않을 때 (ver.1.96)

Category: VsCode | 📅 January 08, 2025

스니펫이 동작하지 않을 때

Code > Preferences > settings

검색 칸에서 markdown 입력 후, 제일 아래 쪽에서 Edit settings for markdown 부분 클릭

우측 상단의 Open settings (JSON) 아이콘 클릭하여 json 파일을 연다.

아래 문구로 수정

{
    "editor.acceptSuggestionOnEnter": "smart", 
    "git.autofetch": true,
    "[markdown]": {
        "editor.quickSuggestions": {
            "other": "on",
            "comments": "off",
            "strings": "off"
    }

    },
    "git.enableSmartCommit": true
}

💭 Reviews
  • 뭐가 이렇게 바뀐거냐!! ㅠㅠ
  • 🏷️ Tags
  • #vscode  
  • #snippet