This file is indexed.

/usr/share/vim/addons/UltiSnips/scss.snippets is in vim-snippets 1.0.0-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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