-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsql.hl
More file actions
59 lines (51 loc) · 1.02 KB
/
sql.hl
File metadata and controls
59 lines (51 loc) · 1.02 KB
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
comment : span.comment
\# # escape hightlight-file comment to include in list
--\ # escape single space after double-dash
keyword-flow : span.keywordflow
if # This is the first comment. It will be removed.
case
then
begin
end
loop
while
leave
return
iterate
repeat
until
keyword-type : span.keywordtype
tinyint
smallint
mediumint
int
bigint
float
double
real
bit
date
time
datetime
timestamp
year
keyword : span.keyword
create
procedure
exists
unsigned
auto_increment
zerofill
not
null
default
# The contents of a highlight file will be parsed and arranged
# into a linked tree memory structure.
#
# Comments in highlight files start with a '#', and the token
# and the remainder of the line will be left out of the tree.
# Leading and trailing spaces are also removed
#
#
# If it is necessary to include either a '#' or a trailing or
# leading space, include a backslash ('\') just prior to the character