File: php.jsf.in

package info (click to toggle)
jupp 3.1.38-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,420 kB
  • sloc: ansic: 31,382; sh: 4,199; makefile: 431
file content (188 lines) | stat: -rw-r--r-- 2,845 bytes parent folder | download | duplicates (3)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# $MirOS: contrib/code/jupp/syntax/php.jsf.in,v 1.6 2017/12/06 23:17:38 tg Exp $
#-
# JOE syntax highlight file for PHP

# TODO:
#  * octal escape sequences
#  * heredoc support (as good as possible)
#  * highlight variables
#  * highlight function and class names?


# Define no. sync lines
# You can say:
# -200     means 200 lines
# -        means always start parsing from beginning of file when we lose sync
#          if nothing is specified, the default is -120

# Always reparse from beginning
-


# Define colors

=Idle
=HTML		bold black
=Comment 	green
=Constant 	cyan
=Escape 	bold cyan
=Keyword 	bold

:reset HTML
	*		reset
	"<"		reset_lt

:reset_lt HTML
	*		reset
	"?"		idle		recolor=-2
	"%"		idle		recolor=-2

:idle Idle
	*		idle
	"?"		idle_qmark
	"%"		idle_hash
	"#"		sh_comment	recolor=-1
	"/"		slash
	"0-9"		first_digit	recolor=-1
	"'"		string_sq	recolor=-1
	"\""		string_dq	recolor=-1
	"a-zA-Z_"	ident		buffer

:idle_qmark Idle
	*		idle
	">"		reset
	"0-9"		first_digit	recolor=-1
	"'"		string_sq	recolor=-1
	"\""		string_dq	recolor=-1
	"a-zA-Z_"	ident		buffer

:idle_hash Idle
	*		idle	noeat
	">"		reset

:sh_comment Comment
	*		sh_comment
	"\n"		idle

:slash Idle
	*		idle		noeat
	"*"		comment		recolor=-2
	"/"		line_comment	recolor=-2

:comment Comment
	*		comment
	"*"		maybe_end_comment

:maybe_end_comment Comment
	*		comment
	"/"		idle
	"*"		maybe_end_comment

:line_comment Comment
	*		line_comment
	"\n"		idle


:string_sq Constant
	*		string_sq
	"\'"		idle
	"\\"		string_sq_esc	recolor=-1

:string_sq_esc Escape
	*		string_sq
	"\n"		string_sq	recolor=-2

:string_dq Constant
	*		string_dq
	"\""		idle
	"\\"		string_dq_esc	recolor=-1

:string_dq_esc Escape
	*		string_dq
	"\n"		string_dq	recolor=-2

:first_digit Constant
	*		idle	noeat
	"xX"		hex
	"."		float
	"0-9"		first_number

:hex Constant
	*		idle	noeat
	"0-9A-Fa-f"	hex

:first_number Constant
	*		idle	noeat
	"0-9"		first_number
	"."		float

:maybe_float Constant
	*		idle	recolor=-2	noeat
	"0-9"		float		recolor=-2

:float Constant
	*		idle	noeat
	"eE"		epart
	"0-9"		float

:epart Constant
	*		idle	noeat
	"0-9+\-"	enum

:enum Constant
	*		idle	noeat
	"0-9"		enum

:ident Idle
	*		idle		noeat strings
	"and"		kw
	"array"		kw
	"as"		kw
	"break"		kw
	"class"		kw
	"continue"	kw
	"declare"	kw
	"default"	kw
	"die"		kw
	"do"		kw
	"echo"		kw
	"else"		kw
	"elseif"	kw
	"empty"		kw
	"enddeclare"	kw
	"endfor"	kw
	"endforeach"	kw
	"endif"		kw
	"endswitch"	kw
	"endwhile"	kw
	"eval"		kw
	"exception"	kw
	"exit"		kw
	"extends"	kw
	"for"		kw
	"foreach"	kw
	"function"	kw
	"global"	kw
	"if"		kw
	"include"	kw
	"include_once"	kw
	"isset"		kw
	"list"		kw
	"new"		kw
	"or"		kw
	"print"		kw
	"require"	kw
	"require_once"	kw
	"return"	kw
	"static"	kw
	"switch"	kw
	"unset"		kw
	"use"		kw
	"var"		kw
	"while"		kw
	"xor"		kw
done
	"a-zA-Z0-9_"	ident

:kw Keyword
	*	idle	noeat