Skip to content

Instantly share code, notes, and snippets.

@j-cam
Created April 29, 2018 16:37
Show Gist options
  • Save j-cam/fad6066f6e6105f51abe36f847bb4a57 to your computer and use it in GitHub Desktop.
Save j-cam/fad6066f6e6105f51abe36f847bb4a57 to your computer and use it in GitHub Desktop.
VS Code User Snippets SCSS: add @ directives.
{
"@import directive": {
"prefix": "@import",
"body": [
"@import "
],
"description": "import scss/sass partial"
},
"@include directive": {
"prefix": "@include",
"body": [
"@include "
],
"description": "include scss/sass mixin"
},
"@function directive": {
"prefix": "@function",
"body": [
"@function "
],
"description": "declare scss/sass function"
},
"@mixin directive": {
"prefix": "@mixin",
"body": [
"@mixin "
],
"description": "declare scss/sass mixin"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment