diff --git a/UltiSnips/scss.snippets b/UltiSnips/scss.snippets index f214284..cab17c1 100644 --- a/UltiSnips/scss.snippets +++ b/UltiSnips/scss.snippets @@ -7,21 +7,21 @@ snippet imp "@import '...';" b endsnippet snippet inc "@include mixin(...);" b -@include ${1:mixin}(${2:arguments}); +@include ${1:mixin}(${2}); endsnippet snippet ext "@extend %placeholder;" b -@extend %${1:placeholder}; +@extend %${1:%placeholder}; endsnippet snippet mixin "@mixin (...) { ... }" b -@mixin ${1:name}(${2:arguments}) { +@mixin ${1:name}(${2}) { ${VISUAL}$0 } endsnippet snippet fun "@function (...) { ... }" b -@function ${1:name}(${2:arguments}) { +@function ${1:name}(${2}) { ${VISUAL}$0 } endsnippet diff --git a/snippets/scss.snippets b/snippets/scss.snippets new file mode 100644 index 0000000..6daee77 --- /dev/null +++ b/snippets/scss.snippets @@ -0,0 +1,36 @@ +snippet $ + $${1:variable}: ${0:value}; +snippet imp + @import '${0}'; +snippet mix + @mixin ${1:name}(${2}) { + ${0} + } +snippet inc + @include ${1:mixin}(${2}); +snippet ex + @extend ${0}; +snippet fun + @function ${1:name}(${2:args}) { + ${0} + } +snippet if + @if ${1:condition} { + ${0} + } +snippet else + @else ${1:condition} { + ${0} + } +snippet for + @for ${1:$i} from ${2:1} through ${3:3} { + ${0} + } +snippet each + @each ${1:$item} in ${2:items} { + ${0} + } +snippet while + @while ${1:$i} ${2:>} ${3:0} { + ${0} + }