source: src/main/java/weka/gui/scripting/Jython.props @ 18

Last change on this file since 18 was 4, checked in by gnappo, 14 years ago

Import di weka.

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
11FontName=monospaced
12
13# the font size
14FontSize=12
15
16#############################################
17# Colors (R,G,B format can be used as well) #
18#############################################
19
20# the font color
21ForegroundColor=black
22
23# the background color
24BackgroundColor=white
25
26# the color for keywords
27KeywordColor=blue
28
29# the color for comments
30CommentColor=gray
31
32# the color for strings
33StringColor=red
34
35##########
36# Syntax #
37##########
38
39# whether the syntax highlighting etc is on or not (true|false)
40Syntax=true
41
42# the number of spaces to use for indentation instead of TAB
43Indentation=4
44
45# the number of characters that a single tab represents
46Tabs=4
47
48# whether to use blanks instead of tabs (true|false)
49UseBlanks=true
50
51# word delimiters
52Delimiters=;:{}()[]+-/%<=>!&|^~*
53
54# delimiter for quoted strings/characters
55QuoteDelimiters="'
56
57# the character to escape quotes
58QuoteEscape=\\
59
60# whether multi-line comments are enabled (true|false)
61MultiLineComment=true
62
63# the start delimiter of a multi-line comment
64MultiLineCommentStart="""
65
66# the end delimiter of a multi-line comment
67MultiLineCommentEnd="""
68
69# the start delimiter of a single-line comment
70SingleLineCommentStart=#
71
72# whether to add matching block end (true|false)
73AddMatchingBlockEnd=false
74
75# the start of a block (e.g., "opening bracket")
76BlockStart=
77
78# the end of a block (e.g., "closing bracket")
79BlockEnd=
80
81# whether the keywords are case-sensitive (true|false)
82CaseSensitive=true
83
84# the keywords
85Keywords=\
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.