···11{
22- // Place your snippets for rust here. Each snippet is defined under a snippet name and has a prefix, body and
22+ // Place your snippets for rust here. Each snippet is defined under a snippet name and has a prefix, body and
33 // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
44- // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
44+ // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
55 // same ids are connected.
66 // Example:
77 // "Print to console": {
···1212 // ],
1313 // "description": "Log output to console"
1414 // }
1515- "dbg!": {
1616- "prefix": "dbg",
1717- "body": [
1818- "dbg!($1)",
1919- ],
2020- "description": "Fix typo of dgb -> dbg!"
2121- },
2222- "dbg! typo": {
2323- "prefix": "dgb",
2424- "body": [
2525- "dbg!($1)",
2626- ],
2727- "description": "Fix typo of dgb -> dbg!"
2828- }
2915}