Wiki

SciTE: cobraproj.properties

File cobraproj.properties, 3.0 KB (added by torial, 13 years ago)

Cobraproj properties file

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