Created
August 10, 2020 14:46
-
-
Save andrew-codechimp/44e00c8ce4a6e8d7c72ae7a872847c7f to your computer and use it in GitHub Desktop.
VS Code Global Snippet Creation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "Slim Log Error": { | |
| "scope": "perl", | |
| "prefix": "slimlogerror", | |
| "body": [ | |
| "\\$log->error(\"$1\");" | |
| ], | |
| "description": "Slim Error Log" | |
| }, | |
| "Slim Setting Title": { | |
| "scope": "html", | |
| "prefix": "slimsettingtitle", | |
| "body": [ | |
| "[% WRAPPER setting title=\"${1:titlestring}\" desc=\"\" %]", | |
| "<div class=\"prefDesc\">[% \"${2:descriptionstring}\" | string %]</div>", | |
| "[% END %]" | |
| ], | |
| "description": "Slim Setting Title" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment