From e573b3020c032400eed60b649a2cbf55266e6bb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 30 Jun 2016 16:03:25 +0200 Subject: Add current configurations from old repository --- vim/bundle/vim-snippets/snippets/scss.snippets | 44 ++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 vim/bundle/vim-snippets/snippets/scss.snippets (limited to 'vim/bundle/vim-snippets/snippets/scss.snippets') diff --git a/vim/bundle/vim-snippets/snippets/scss.snippets b/vim/bundle/vim-snippets/snippets/scss.snippets new file mode 100644 index 0000000..998a120 --- /dev/null +++ b/vim/bundle/vim-snippets/snippets/scss.snippets @@ -0,0 +1,44 @@ +extends css + +snippet $ + $${1:variable}: ${0:value}; +snippet imp + @import '${0}'; +snippet mix + @mixin ${1:name}(${2}) { + ${0} + } +snippet inc + @include ${1:mixin}(${2}); +snippet ext + @extend ${0}; +snippet fun + @function ${1:name}(${2:args}) { + ${0} + } +snippet if + @if ${1:condition} { + ${0} + } +snippet ife + @if ${1:condition} { + ${2} + } @else { + ${0} + } +snippet eif + @else if ${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} + } -- cgit v1.2.3