blob: 07919a86a62b1e548d92d41b4fe307d07e60c5d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE language SYSTEM "language.dtd">
<language name="WINE Config" version="1.03" kateversion="2.4" section="Configuration" extensions="*.reg" mimetype="">
<highlighting>
<contexts>
<context attribute="Normal Text" lineEndContext="#stay" name="Normal">
<RegExpr String="WINE REGISTRY Version.*$" attribute="RegistryBeginEnd" context="#stay" />
<RegExpr String="#\s*<\s*wineconf\s*>" attribute="RegistryBeginEnd" context="#stay" column="0"/>
<RegExpr String="#\s*<\s*\/\s*wineconf\s*>" attribute="RegistryBeginEnd" context="#stay" column="0"/>
<RegExpr String="\[.*\]$" attribute="Section" context="#stay" column="0"/>
<RegExpr String=";.*$" attribute="Comment" context="#stay"/>
<RegExpr String="\s*"\s*[a-zA-Z0-9_.:*]*\s*"" attribute="Key" context="#stay" />
<DetectChar char="=" attribute="Normal Text" context="Value"/>
</context>
<context attribute="Normal Text" lineEndContext="#pop" name="Value">
<RegExpr String="\s*".*"" attribute="Value" context="#stay" />
<RegExpr String=";.*$" attribute="Comment" context="#stay"/>
</context>
</contexts>
<itemDatas>
<itemData name="Normal Text" defStyleNum="dsNormal"/>
<itemData name="Section" defStyleNum="dsKeyword"/>
<itemData name="Key" defStyleNum="dsDataType"/>
<itemData name="Value" defStyleNum="dsNormal" color="#0000FF" selColor="#ffffff" italic="0" bold="1"/>
<itemData name="Comment" defStyleNum="dsComment"/>
<itemData name="ValueFilesystem1" defStyleNum="dsNormal" color="#00AA00" selColor="#ffffff" italic="0" bold="1"/>
<itemData name="ValueFilesystem2" defStyleNum="dsNormal" color="#FF0000" selColor="#ffffff" italic="0" bold="1"/>
<itemData name="RegistryBeginEnd" defStyleNum="dsNormal" color="#00AAAA" selColor="#ffffff" italic="0" bold="1"/>
</itemDatas>
</highlighting>
</language>
<!-- kate: space-indent on; indent-width 2; replace-tabs on; -->
|