10 {
12
13
14
15
16
17
18 $this->nocase = "0";
19 $this->notrim = "0";
20 $this->perl = "0";
21
22
23
24 $this->colours = array("blue", "purple");
25 $this->quotecolour = "blue";
26 $this->blockcommentcolour = "green";
27 $this->linecommentcolour = "green";
28
29
30
31 $this->indent = array();
32 $this->unindent = array();
33
34
35
36 $this->stringchars = array("\"", "'");
37 $this->delimiters = array("~", "!", "$", "%", "^", "&", "-", "+", "=", "|", "\\", "/", "{", "}", "[", "]", ";", "\"", "'", "(", ")", "<", ">", " ", ",", " ");
38 $this->escchar = "";
39
40
41
42 $this->linecommenton = array("#");
43 $this->blockcommenton = array("");
44 $this->blockcommentoff = array("");
45
46
47
48 $this->keywords = array(
49 ".DEFAULT:" => "1",
50 ".IGNORE:" => "1",
51 ".PRECIOUS:" => "1",
52 ".SILENT:" => "1",
53 ".SUFFIXES" => "1",
54 "?" => "2",
55 "@" => "2",
56 "$" => "2",
57 "$@" => "2",
58 "<" => "2",
59 "*" => "2",
60 "%" => "2",
61 "()" => "2");
62
63
64
65
66
67
68
69
70 $this->linkscripts = array(
71 "1" => "donothing",
72 "2" => "donothing");
73 }