89 lines
3.0 KiB
XML
89 lines
3.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE language>
|
|
<language name="INI Files" section="Configuration" extensions="*.ini;*.cfg;*.pls;*.kcfgc;.gitattributes*;.gitconfig*;.gitmodules*;.editorconfig*" mimetype="" version="13" kateversion="5.0" author="Jan Janssen (medhefgo@web.de)" license="LGPL" priority="1">
|
|
|
|
<highlighting>
|
|
<list name="keywords">
|
|
<item>On</item>
|
|
<item>Off</item>
|
|
<item>Default</item>
|
|
<item>Defaults</item>
|
|
<item>Localhost</item>
|
|
<item>Null</item>
|
|
<item>True</item>
|
|
<item>False</item>
|
|
<item>Yes</item>
|
|
<item>No</item>
|
|
<item>Normal</item>
|
|
|
|
<!-- PHP Keywords -->
|
|
<item>E_ALL</item>
|
|
<item>E_ERROR</item>
|
|
<item>E_WARNING</item>
|
|
<item>E_PARSE</item>
|
|
<item>E_NOTICE</item>
|
|
<item>E_STRICT</item>
|
|
<item>E_CORE_ERROR</item>
|
|
<item>E_CORE_WARNING</item>
|
|
<item>E_COMPILE_ERROR</item>
|
|
<item>E_COMPILE_WARNING</item>
|
|
<item>E_USER_ERROR</item>
|
|
<item>E_USER_WARNING</item>
|
|
<item>E_USER_NOTICE</item>
|
|
</list>
|
|
|
|
<contexts>
|
|
<context name="ini" attribute="Normal Text" lineEndContext="#stay">
|
|
<RangeDetect attribute="Section" context="#stay" char="[" char1="]" beginRegion="Section" endRegion="Section" />
|
|
<DetectChar attribute="Assignment" context="Value" char="=" />
|
|
<AnyChar String=";#" attribute="Comment" context="Comment" firstNonSpace="true" />
|
|
<DetectIdentifier />
|
|
<DetectSpaces />
|
|
</context>
|
|
|
|
<context name="Value" attribute="Value" lineEndContext="#pop" fallthrough="1" fallthroughContext="#pop!NormalValue">
|
|
<RegExpr context="#pop!SpecialValue" String="\s*((-?(\d+(\.\d*)?|\.d+)(e\d+)?|On|Off|Defaults?|Localhost|Null|True|False|Yes|No|Normal)\s*$|~?(E_ALL|E_ERROR|E_WARNING|E_PARSE|E_NOTICE|E_STRICT|E_CORE_ERROR|E_CORE_WARNING|E_COMPILE_ERROR|E_COMPILE_WARNING|E_USER_ERROR|E_USER_WARNING|E_USER_NOTICE)\b)" lookAhead="1" insensitive="1"/>
|
|
</context>
|
|
|
|
<context name="SpecialValue" attribute="Value" lineEndContext="#pop">
|
|
<Float attribute="Float" />
|
|
<Int attribute="Int" />
|
|
<keyword attribute="Keyword" String="keywords"/>
|
|
<DetectChar attribute="Int" char="-" />
|
|
<DetectSpaces />
|
|
</context>
|
|
|
|
<context name="NormalValue" attribute="Value" lineEndContext="#pop">
|
|
</context>
|
|
|
|
<context name="Comment" attribute="Comment" lineEndContext="#pop">
|
|
<DetectSpaces />
|
|
<IncludeRules context="##Comments" />
|
|
<DetectIdentifier />
|
|
</context>
|
|
</contexts>
|
|
|
|
|
|
<itemDatas>
|
|
<itemData name="Normal Text" defStyleNum="dsDataType" spellChecking="false"/>
|
|
<itemData name="Section" defStyleNum="dsKeyword" spellChecking="false"/>
|
|
<itemData name="Comment" defStyleNum="dsComment"/>
|
|
<itemData name="Assignment" defStyleNum="dsOthers" spellChecking="false"/>
|
|
<itemData name="Value" defStyleNum="dsString" spellChecking="false"/>
|
|
<itemData name="Float" defStyleNum="dsFloat" spellChecking="false"/>
|
|
<itemData name="Int" defStyleNum="dsDecVal" spellChecking="false"/>
|
|
<itemData name="Keyword" defStyleNum="dsKeyword" spellChecking="false"/>
|
|
</itemDatas>
|
|
</highlighting>
|
|
|
|
|
|
<general>
|
|
<comments>
|
|
<comment name="singleLine" start=";" />
|
|
</comments>
|
|
<keywords casesensitive="0" />
|
|
</general>
|
|
|
|
</language>
|
|
<!-- kate: replace-tabs on; indent-width 1; -->
|