This file is indexed.

/usr/share/vim/addons/UltiSnips/tcl.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
priority -50

###########################################################################
#                            TEXTMATE SNIPPETS                            #
###########################################################################
snippet for "for... (for)" b
for {${1:set i 0}} {${2:\$i < \$n}} {${3:incr i}} {
	${4}
}

endsnippet

snippet foreach "foreach... (foreach)"
foreach ${1:var} ${2:\$list} {
	${3}
}

endsnippet

snippet if "if... (if)" b
if {${1:condition}} {
	${2}
}

endsnippet

snippet proc "proc... (proc)" b
proc ${1:name} {${2:args}} \
{
	${3}
}

endsnippet

snippet switch "switch... (switch)" b
switch ${1:-exact} -- ${2:\$var} {
	${3:match} {
		${4}
	}
	default {${5}}
}

endsnippet

snippet while "while... (while)" b
while {${1:condition}} {
	${2}
}

endsnippet

# vim:ft=snippets: