Last change
on this file since 29 was
29,
checked in by gnappo, 14 years ago
|
Taggata versione per la demo e aggiunto branch.
|
File size:
1.8 KB
|
Line | |
---|
1 | # Defines the syntax highlighting for Jython |
---|
2 | # |
---|
3 | # Author: FracPete (fracpete at waikato dot ac dot nz) |
---|
4 | # Version: $Revision: 5293 $ |
---|
5 | |
---|
6 | ######## |
---|
7 | # Font # |
---|
8 | ######## |
---|
9 | |
---|
10 | # the font name |
---|
11 | FontName=monospaced |
---|
12 | |
---|
13 | # the font size |
---|
14 | FontSize=12 |
---|
15 | |
---|
16 | ############################################# |
---|
17 | # Colors (R,G,B format can be used as well) # |
---|
18 | ############################################# |
---|
19 | |
---|
20 | # the font color |
---|
21 | ForegroundColor=black |
---|
22 | |
---|
23 | # the background color |
---|
24 | BackgroundColor=white |
---|
25 | |
---|
26 | # the color for keywords |
---|
27 | KeywordColor=blue |
---|
28 | |
---|
29 | # the color for comments |
---|
30 | CommentColor=gray |
---|
31 | |
---|
32 | # the color for strings |
---|
33 | StringColor=red |
---|
34 | |
---|
35 | ########## |
---|
36 | # Syntax # |
---|
37 | ########## |
---|
38 | |
---|
39 | # whether the syntax highlighting etc is on or not (true|false) |
---|
40 | Syntax=true |
---|
41 | |
---|
42 | # the number of spaces to use for indentation instead of TAB |
---|
43 | Indentation=4 |
---|
44 | |
---|
45 | # the number of characters that a single tab represents |
---|
46 | Tabs=4 |
---|
47 | |
---|
48 | # whether to use blanks instead of tabs (true|false) |
---|
49 | UseBlanks=true |
---|
50 | |
---|
51 | # word delimiters |
---|
52 | Delimiters=;:{}()[]+-/%<=>!&|^~* |
---|
53 | |
---|
54 | # delimiter for quoted strings/characters |
---|
55 | QuoteDelimiters="' |
---|
56 | |
---|
57 | # the character to escape quotes |
---|
58 | QuoteEscape=\\ |
---|
59 | |
---|
60 | # whether multi-line comments are enabled (true|false) |
---|
61 | MultiLineComment=true |
---|
62 | |
---|
63 | # the start delimiter of a multi-line comment |
---|
64 | MultiLineCommentStart=""" |
---|
65 | |
---|
66 | # the end delimiter of a multi-line comment |
---|
67 | MultiLineCommentEnd=""" |
---|
68 | |
---|
69 | # the start delimiter of a single-line comment |
---|
70 | SingleLineCommentStart=# |
---|
71 | |
---|
72 | # whether to add matching block end (true|false) |
---|
73 | AddMatchingBlockEnd=false |
---|
74 | |
---|
75 | # the start of a block (e.g., "opening bracket") |
---|
76 | BlockStart= |
---|
77 | |
---|
78 | # the end of a block (e.g., "closing bracket") |
---|
79 | BlockEnd= |
---|
80 | |
---|
81 | # whether the keywords are case-sensitive (true|false) |
---|
82 | CaseSensitive=true |
---|
83 | |
---|
84 | # the keywords |
---|
85 | Keywords=\ |
---|
86 | and,\ |
---|
87 | assert,\ |
---|
88 | break,\ |
---|
89 | class,\ |
---|
90 | continue,\ |
---|
91 | def,\ |
---|
92 | del,\ |
---|
93 | elif,\ |
---|
94 | else,\ |
---|
95 | except,\ |
---|
96 | exec,\ |
---|
97 | finally,\ |
---|
98 | for,\ |
---|
99 | from,\ |
---|
100 | global,\ |
---|
101 | if,\ |
---|
102 | import,\ |
---|
103 | in,\ |
---|
104 | is,\ |
---|
105 | lambda,\ |
---|
106 | not,\ |
---|
107 | or,\ |
---|
108 | pass,\ |
---|
109 | print,\ |
---|
110 | raise,\ |
---|
111 | return,\ |
---|
112 | try,\ |
---|
113 | while,\ |
---|
Note: See
TracBrowser
for help on using the repository browser.