Remove stale "Add case" snippet

The reflection-driven implementation of Add no longer contains a huge boilerplate `switch` statement so we no longer need a snippet for the boilerplate.
This commit is contained in:
Kistaro Windrider 2024-09-29 12:20:53 -07:00
parent 2d16f97314
commit 68cab7d2be
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8

View File

@ -15,13 +15,4 @@
// ], // ],
// "description": "Log output to console" // "description": "Log output to console"
// } // }
"KoboldMine Add case": {
"scope": "go",
"prefix": "case",
"body": [
"case ${1:field}:",
"\tk.${1:field} += amount",
"\treturn nil",
],
}
} }