File: scss.snippets

package info (click to toggle)
vim-snippets 1.0.0-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 900 kB
  • sloc: python: 9; makefile: 2
file content (55 lines) | stat: -rw-r--r-- 946 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
priority -50

snippet /@?imp/ "@import '...';" br
@import '${1:file}';
endsnippet

snippet /@?inc/ "@include mixin(...);" br
@include ${1:mixin}(${2:arguments});
endsnippet

snippet /@?ext?/ "@extend %placeholder;" br
@extend %${1:placeholder};
endsnippet

snippet /@?mixin/ "@mixin (...) { ... }" br
@mixin ${1:name}(${2:arguments}) {
	${VISUAL}$0
}
endsnippet

snippet /@?fun/ "@function (...) { ... }" br
@function ${1:name}(${2:arguments}) {
	${VISUAL}$0
}
endsnippet

snippet /@?if/ "@if (...) { ... }" br
@if ${1:condition} {
	${VISUAL}$0
}
endsnippet

snippet /(} )?@?else/ "@else { ... }" br
@else ${1:condition} {
	${VISUAL}$0
}
endsnippet

snippet /@?for/ "@for loop" br
@for ${1:$i} from ${2:1} through ${3:3} {
	${VISUAL}$0
}
endsnippet

snippet /@?each/ "@each loop" br
@each ${1:$item} in ${2:item, item, item} {
	${VISUAL}$0
}
endsnippet

snippet /@?while/ "@while loop" br
@while ${1:$i} ${2:>} ${3:0} {
	${VISUAL}$0
}
endsnippet