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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE language >
<language name="Hunspell Dictionary File" section="Other" extensions="*.dic" priority="-9" version="3" kateversion="5.0" author="Lukas Sommer" license="LGPL version 2.1, or version 3 or later versions approved by the membership of KDE e.V.; or any other license appoved by the emembership of KDE e.V.">
<highlighting>
<list name="list_hyphenKeywords">
<item>LEFTHYPHENMIN</item>
<item>RIGHTHYPHENMIN</item>
<item>COMPOUNDLEFTHYPHENMIN</item>
<item>COMPOUNDRIGHTHYPHENMIN</item>
<item>NEXTWORD</item>
<item>NOHYPHEN</item>
<item>NEXTLEVEL</item>
</list>
<contexts>
<context name="context_dic" attribute="Undefined" lineEndContext="context_spell" >
<!-- detect in the first line wether this is a hyphen dictionary (continue with context_hyphen) or a spell check dictionary (continue with context_spell) -->
<Int attribute="Number" context="context_spell" column="0" />
<RegExpr attribute="Encoding" context="context_hyphen" String=".*" />
</context>
<context name="context_hyphen" attribute="String" lineEndContext="#stay">
<AnyChar String="0123456789" attribute="Number" context="#stay" />
<DetectChar char="." attribute="Keyword" context="#stay" />
<DetectChar char="/" attribute="Keyword" context="context_hyphen_parameters" />
<AnyChar String="#%" column="0" attribute="Comment" context="context_comment" />
<keyword attribute="Keyword" context="#stay" String="list_hyphenKeywords" column="0" />
</context>
<context name="context_hyphen_parameters" attribute="String" lineEndContext="#pop">
<AnyChar String=",=" attribute="Keyword" context="#stay" />
<AnyChar String="0123456789" attribute="Number" context="#stay" />
</context>
<context name="context_spell" attribute="String" lineEndContext="#stay">
<DetectChar char="#" column="0" attribute="Comment" context="context_comment" />
<DetectChar char="/" attribute="Keyword" context="context_spell_flags" />
<DetectSpaces context="context_spell_options" />
</context>
<context name="context_spell_flags" attribute="Flags" lineEndContext="#pop">
<DetectSpaces context="context_spell_options" />
</context>
<context name="context_spell_options" attribute="Keyword" lineEndContext="#pop">
<DetectChar char=":" attribute="Keyword" context="context_spell_parameter" />
<DetectChar char="#" column="0" attribute="Comment" context="context_comment" />
</context>
<context name="context_spell_parameter" attribute="String" lineEndContext="#pop">
<DetectSpaces context="#pop" />
</context>
<context name="context_comment" attribute="Comment" lineEndContext="#pop">
<DetectSpaces />
<IncludeRules context="##Comments" />
<DetectIdentifier />
</context>
</contexts>
<itemDatas>
<itemData name="Undefined" defStyleNum="dsNormal" />
<itemData name="Keyword" defStyleNum="dsKeyword" />
<itemData name="Comment" defStyleNum="dsComment" />
<itemData name="Number" defStyleNum="dsDecVal" />
<itemData name="String" defStyleNum="dsString" />
<itemData name="Flags" defStyleNum="dsChar" />
<itemData name="Encoding" defStyleNum="dsDataType" />
</itemDatas>
</highlighting>
<general>
<comments>
<comment name="singleLine" start="#" />
</comments>
</general>
</language>
<!-- kate: replace-tabs off; -->
|