This file is indexed.

/usr/share/ne/syntax/skill.jsf is in ne 2.3-1.

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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# JOE syntax highlight file for SKILL
# Based on the very rudimentary lisp syntax file
# Written by Joachim Fenkes <skill dot jsf at dojoe dot net> in 2005

=Idle
=Comment 	green
=String 	cyan
=Escape 	bold cyan
=Bracket	bold
=Symbol		bold blue
=Keyword	bold
=Number		bold magenta
=Bad		bold red

:idle Idle
	*		idle
	";"		comment		recolor=-1
	"\""		string		recolor=-1
	"/"		slash
	"()[]{}"	bracket		recolor=-1
	"'"		maybe_symbol	recolor=-1
	"a-zA-Z_"	maybe_keyword	buffer
	"0-9"		number		recolor=-1

:maybe_keyword Idle
	*		idle		noeat	strings
	"list"		keyword
	"procedure"	keyword
	"while"		keyword
	"foreach"	keyword
	"if"		keyword
	"for"		keyword
	"when"		keyword
	"unless"	keyword
	"cond"		keyword
	"defun"		keyword
	"let"		keyword
	"prog"		keyword
	"else"		keyword
	"then"		keyword
	"case"		keyword
	"caseq"		keyword
	"nil"		keyword
	"t"		keyword
done
	"0-9a-zA-Z_"	maybe_keyword
	
:number Number
	*		idle		noeat
	"0-9."		number
	
:slash Idle
	*		idle
	"/"		slash
	"*"		mcomment	recolor=-2

:comment Comment
	*		comment
	"\n"		idle

:mcomment Comment
	*		mcomment
	"*"		maybe_end_mcomment
	
:maybe_end_mcomment Comment
	*		mcomment
	"*"		maybe_end_mcomment
	"/"		idle

:string String
	*		string
	"\""		idle
	"\\"		string_escape	recolor=-1

:string_escape Escape
	*		string
	"\n"		string		recolor=-2

:bracket Bracket
	*		idle		noeat

:maybe_symbol Idle
	*		symbol		recolor=-2
	"(){}"		bracket		recolor=-2

:symbol Symbol
	*		symbol
	" \t\n"		idle		recolor=-1
	")"		bracket		recolor=-1

:keyword Keyword
	*		idle		noeat