1 | # Define SciTE settings for Cobra files. |
---|
2 | # Adapted from Python mode |
---|
3 | |
---|
4 | file.patterns.cobraproj=*.cobraproj |
---|
5 | |
---|
6 | filter.cobraproj=cobraproj (cobraproj)|$(file.patterns.cobraproj)| |
---|
7 | |
---|
8 | lexer.$(file.patterns.cobraproj)=python |
---|
9 | |
---|
10 | keywordclass.cobraproj= |
---|
11 | |
---|
12 | keywords.$(file.patterns.cobraproj)=$(keywordclass.cobraproj) |
---|
13 | |
---|
14 | statement.indent.$(file.patterns.cobraproj)=10 : |
---|
15 | statement.end.$(file.patterns.cobraproj)= |
---|
16 | statement.lookback.$(file.patterns.cobraproj)=0 |
---|
17 | block.start.$(file.patterns.cobraproj)= |
---|
18 | block.end.$(file.patterns.cobraproj)= |
---|
19 | |
---|
20 | |
---|
21 | tab.timmy.whinge.level=1 |
---|
22 | |
---|
23 | #fold.quotes.cobraproj=1 |
---|
24 | |
---|
25 | comment.block.cobraproj=#~ |
---|
26 | comment.stream.start.cobraproj=/# |
---|
27 | comment.stream.end.cobraproj=#/ |
---|
28 | comment.stream.start.python=/# |
---|
29 | comment.stream.end.python=#/ |
---|
30 | comment.box.start.cobraproj=/# |
---|
31 | comment.box.middle.cobraproj= |
---|
32 | comment.box.end.cobraproj=#/ |
---|
33 | comment.box.start.python=/# |
---|
34 | comment.box.middle.python= |
---|
35 | comment.box.end.python=#/ |
---|
36 | |
---|
37 | # cobra styles |
---|
38 | # White space |
---|
39 | style.cobraproj.0=fore:#808080 |
---|
40 | # Comment |
---|
41 | style.cobraproj.1=fore:#007F00,$(font.comment) |
---|
42 | # Number |
---|
43 | style.cobraproj.2=fore:#007F7F |
---|
44 | # String |
---|
45 | style.cobraproj.3=fore:#7F007F,$(font.monospace) |
---|
46 | # Single quoted string |
---|
47 | style.cobraproj.4=fore:#7F007F,$(font.monospace) |
---|
48 | # Keyword |
---|
49 | style.cobraproj.5=fore:#00007F,bold |
---|
50 | # Triple quotes |
---|
51 | style.cobraproj.6=fore:#7F0000 |
---|
52 | # Triple double quotes |
---|
53 | style.cobraproj.7=fore:#7F0000 |
---|
54 | # Class name definition |
---|
55 | style.cobraproj.8=fore:#0000FF,bold |
---|
56 | # Function or method name definition |
---|
57 | style.cobraproj.9=fore:#007F7F,bold |
---|
58 | # Operators |
---|
59 | style.cobraproj.10=bold |
---|
60 | # Identifiers |
---|
61 | style.cobraproj.11= |
---|
62 | # Comment-blocks |
---|
63 | style.cobraproj.12=fore:#7F7F7F |
---|
64 | # End of line where string is not closed |
---|
65 | style.cobraproj.13=fore:#000000,$(font.monospace),back:#E0C0E0,eolfilled |
---|
66 | # Highlighted identifiers |
---|
67 | style.cobraproj.14=fore:#407090 |
---|
68 | # Decorators |
---|
69 | style.cobraproj.15=fore:#805000 |
---|
70 | # Matched Operators |
---|
71 | style.cobraproj.34=fore:#0000FF,bold |
---|
72 | style.cobraproj.35=fore:#FF0000,bold |
---|
73 | # Braces are only matched in operator style |
---|
74 | braces.cobraproj.style=10 |
---|
75 | |
---|
76 | font.comment=font:Courier New,size:10,fore:#007700 |
---|
77 | |
---|
78 | cobra=C:\Cobra\bin\cobra.bat |
---|
79 | cobraert=C:\Cobra\bin\cobraERT.bat |
---|
80 | cobrawin = C:\Cobra\bin\cobra-win.bat |
---|
81 | objExplorer =C:\Cobra\bin\ObjectExplorer-WinForms.cobra |
---|
82 | command.go.*.cobraproj=$(cobra) -files:"$(FilePath)" |
---|
83 | command.build.*.cobraproj=$(cobra) -c -turbo -files:"$(FilePath)" |
---|
84 | command.compile.*=$(cobra) -c -files:"$(FilePath)" |
---|
85 | |
---|
86 | command.name.0.*.cobraproj=Test Project |
---|
87 | command.0.*.cobraproj=$(cobra) -test -files:"$(FilePath)" |
---|
88 | command.save.before.0.*.cobraproj=yes |
---|
89 | |
---|
90 | command.name.1.*.cobraproj=Object Explorer Project |
---|
91 | command.1.*.cobraproj=$(cobra) -ref:System.Windows.Forms -ref:System.Drawing "$(objExplorer)" -files:"$(FilePath)" |
---|
92 | command.save.before.1.*.cobraproj=yes |
---|
93 | |
---|
94 | command.name.2.*.cobraproj=Compile ERT Project |
---|
95 | command.2.*.cobraproj=$(cobraert) -c -turbo -files:"$(FilePath)" |
---|
96 | command.save.before.2.*.cobraproj=yes |
---|
97 | |
---|
98 | command.name.3.*.cobraproj=Compile Library Project |
---|
99 | command.3.*.cobraproj=$(cobraert) -c -target:lib -files:"$(FilePath)" |
---|
100 | command.save.before.3.*.cobraproj=yes |
---|
101 | |
---|