diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-02 09:20:27 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-02 09:20:27 +0000 |
commit | d7b9791584eda0f022813fd2b2df50f59eba29c5 (patch) | |
tree | 395d2d48909ce6f9e002106d1638610f7a7c8321 /kate/data/xorg.xml | |
parent | 84bbc54a086fc6894b247488bf62bdff04dd55fa (diff) | |
download | tdelibs-d7b9791584eda0f022813fd2b2df50f59eba29c5.tar.gz tdelibs-d7b9791584eda0f022813fd2b2df50f59eba29c5.zip |
Added remaining missing Kate xml files
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1068844 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kate/data/xorg.xml')
-rw-r--r-- | kate/data/xorg.xml | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/kate/data/xorg.xml b/kate/data/xorg.xml new file mode 100644 index 000000000..48cfb1827 --- /dev/null +++ b/kate/data/xorg.xml @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE language SYSTEM "language.dtd"> +<language name="x.org Configuration" section="Configuration" extensions="xorg.conf" mimetype="" version="1.01" author="Jan Janssen (medhefgo@web.de)" license="LGPL"> + +<highlighting> +<contexts> + <context name="xorg" attribute="Normal Text" lineEndContext="#stay"> + <StringDetect String="Section" attribute="Section" context="Section" beginRegion="Section" insensitive="true" /> + <DetectChar char="#" context="Comment" /> + </context> + + <context name="Section" attribute="Normal Text" lineEndContext="#stay"> + <RangeDetect char=""" char1=""" attribute="Section Name" context="Section Content" /> + <RangeDetect char="'" char1="'" attribute="Section Name" context="Section Content" /> + <DetectIdentifier attribute="Alert" /> + <DetectChar char="#" context="Comment" /> + </context> + + <context name="Section Content" attribute="Normal Text" lineEndContext="#stay"> + <StringDetect String="EndSection" attribute="Section" context="#pop#pop" endRegion="Section" insensitive="true" /> + <StringDetect String="EndSubSection" attribute="Section" context="#pop#pop" endRegion="SubSection" insensitive="true" /> + <StringDetect String="SubSection" attribute="Section" context="Section" beginRegion="SubSection" insensitive="true" /> + <RegExpr String="\b\w+\b" context="Keyword" /> + <DetectChar char="#" context="Comment" /> + </context> + + <context name="Keyword" attribute="Keyword" lineEndContext="#pop"> + <RangeDetect attribute="Value" char=""" char1=""" /> + <RangeDetect attribute="Value" char="'" char1="'" /> + <Float attribute="Float" /> + <Int attribute="Int" /> + <RegExpr attribute="Value2" String="[\w\d]+" /> + <DetectChar char="#" context="Comment" /> + </context> + + <context name="Comment" attribute="Comment" lineEndContext="#pop"> + <DetectSpaces /> + <IncludeRules context="##Alerts" /> + <DetectIdentifier /> + </context> +</contexts> + + +<itemDatas> + <itemData name="Normal Text" defStyleNum="dsNormal" /> + <itemData name="Section" defStyleNum="dsFunction" /> + <itemData name="Section Name" defStyleNum="dsString" /> + <itemData name="Value" defStyleNum="dsDataType" /> + <itemData name="Keyword" defStyleNum="dsKeyword" /> + <itemData name="Alert" defStyleNum="dsError" /> + <itemData name="Int" defStyleNum="dsDecVal" /> + <itemData name="Value2" defStyleNum="dsOthers" /> + <itemData name="Float" defStyleNum="dsFloat" /> + <itemData name="Comment" defStyleNum="dsComment" /> +</itemDatas> +</highlighting> + + +<general> + <comments> + <comment name="singleLine" start="#" /> + </comments> +</general> + +</language> |