feat: add missing KF6 framework recipes

This commit is contained in:
2026-05-07 07:53:26 +01:00
parent d8d498f831
commit a69f479b52
2374 changed files with 2610246 additions and 0 deletions
@@ -0,0 +1,153 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE language>
<language name="Crack" version="10" kateversion="5.0" section="Sources" extensions="*.crk" mimetype="">
<highlighting>
<list name="keywords">
<item>break</item>
<item>catch</item>
<item>class</item>
<item>continue</item>
<item>else</item>
<item>false</item>
<item>for</item>
<item>if</item>
<item>in</item>
<item>is</item>
<item>null</item>
<item>oper</item>
<item>return</item>
<item>this</item>
<item>true</item>
<item>try</item>
<item>typeof</item>
<item>while</item>
</list>
<list name="types">
<item>bool</item>
<item>byte</item>
<item>int16</item>
<item>int32</item>
<item>int64</item>
<item>uint16</item>
<item>uint32</item>
<item>uint64</item>
<item>float32</item>
<item>float64</item>
<item>int</item>
<item>uint</item>
<item>intz</item>
<item>uintz</item>
<item>float</item>
<item>void</item>
</list>
<contexts>
<context attribute="Normal Text" lineEndContext="#stay" name="Normal">
<keyword attribute="Keyword" context="#stay" String="keywords"/>
<WordDetect attribute="Keyword" context="Package" String="import" />
<keyword attribute="Data Type" context="#stay" String="types" />
<Float attribute="Float" context="#stay"/>
<HlCOct attribute="Octal" context="#stay"/>
<HlCHex attribute="Hex" context="#stay"/>
<Int attribute="Decimal" context="#stay"/>
<DetectChar attribute="String" context="Single quoted String" char="'"/>
<DetectChar attribute="String" context="String" char="&quot;"/>
<DetectChar attribute="String" context="Backtick String" char="`"/>
<Detect2Chars attribute="Char" context="Char" char="b" char1="'" />
<DetectChar attribute="Comment" context="Commentar 1" char="#" />
<Detect2Chars attribute="Comment" context="MatchComment" char="/" char1="/" lookAhead="true"/>
<Detect2Chars attribute="Comment" context="MatchComment" char="/" char1="*" lookAhead="true" />
<DetectChar attribute="Symbol" context="#stay" char="{" beginRegion="block1"/>
<DetectChar attribute="Symbol" context="#stay" char="}" endRegion="block1"/>
<AnyChar attribute="Symbol" context="#stay" String=":!%&amp;()+,-/.*&lt;=&gt;?[]|~^&#59;"/>
<RegExpr attribute="Function" context="#stay" String="\b[_\w][_\w\d]*(?=[\s]*[(])" />
<RegExpr attribute="Annotation" context="#stay" String="@\w+" />
<DetectIdentifier attribute="Normal Text"/>
</context>
<context attribute="String" lineEndContext="#pop" name="String">
<LineContinue attribute="String" context="#pop"/>
<HlCStringChar attribute="Char" context="#stay"/>
<DetectChar attribute="String" context="#pop" char="&quot;"/>
</context>
<context attribute="String" lineEndContext="#pop" name="Single quoted String">
<LineContinue attribute="String" context="#pop"/>
<HlCStringChar attribute="Char" context="#stay"/>
<DetectChar attribute="String" context="#pop" char="'"/>
</context>
<context attribute="String" lineEndContext="#stay" name="Backtick String">
<HlCStringChar attribute="Char" context="#stay"/>
<Detect2Chars attribute="Substitution" char="$" char1="(" context="Subst"/>
<DetectChar attribute="Substitution" char="$" context="Short Subst"/>
<DetectChar attribute="String" context="#pop" char="`"/>
</context>
<context attribute="Char" lineEndContext="#pop" name="Char">
<HlCStringChar attribute="Char" context="#stay" />
<DetectChar attribute="Char" context="#pop" char="'" />
</context>
<context name="Braces" attribute="Normal Text" lineEndContext="#stay">
<DetectChar attribute="Normal Text" char=")" context="#pop"/>
<!-- Highlight everything inside as code. -->
<IncludeRules context="Normal"/>
</context>
<context name="Subst" attribute="Normal Text" lineEndContext="#stay">
<!-- Switch to a new context when encountering an lbrace so that we don't #pop too early. -->
<DetectChar attribute="Normal Text" char="(" context="Braces"/>
<DetectChar attribute="Substitution" char=")" context="#pop"/>
<!-- Highlight substitution as code. -->
<IncludeRules context="Normal"/>
</context>
<context name="Short Subst" attribute="Substitution" lineEndContext="#pop">
<RegExpr attribute="Substitution" String="\w(?!\w)" context="#pop"/>
</context>
<context name="Package" attribute="Package" lineEndContext="#pop">
<RegExpr attribute="Package" String="[\w\\.]+" context="#pop"/>
</context>
<context name="MatchComment" attribute="Normal Text" lineEndContext="#pop" fallthrough="true" fallthroughContext="#pop">
<IncludeRules context="##Doxygen" />
<Detect2Chars attribute="Comment" context="#pop!Commentar 1" char="/" char1="/" />
<Detect2Chars attribute="Comment" context="#pop!Commentar 2" char="/" char1="*" beginRegion="Comment" />
</context>
<context attribute="Comment" lineEndContext="#pop" name="Commentar 1">
<IncludeRules context="##Comments" />
</context>
<context attribute="Comment" lineEndContext="#stay" name="Commentar 2">
<Detect2Chars attribute="Comment" context="#pop" char="*" char1="/" endRegion="BlockComment"/>
<IncludeRules context="##Comments" />
</context>
</contexts>
<itemDatas>
<itemData name="Normal Text" defStyleNum="dsNormal"/>
<itemData name="Keyword" defStyleNum="dsKeyword"/>
<itemData name="Data Type" defStyleNum="dsDataType"/>
<itemData name="Decimal" defStyleNum="dsDecVal"/>
<itemData name="Octal" defStyleNum="dsBaseN"/>
<itemData name="Hex" defStyleNum="dsBaseN"/>
<itemData name="Float" defStyleNum="dsFloat"/>
<itemData name="Char" defStyleNum="dsChar"/>
<itemData name="String" defStyleNum="dsString"/>
<itemData name="Comment" defStyleNum="dsComment"/>
<itemData name="Symbol" defStyleNum="dsOperator"/>
<itemData name="Substitution" defStyleNum="dsOthers"/>
<itemData name="Package" defStyleNum="dsFunction"/>
<itemData name="Function" defStyleNum="dsFunction"/>
<itemData name="Annotation" defStyleNum="dsAttribute"/>
</itemDatas>
</highlighting>
<general>
<comments>
<comment name="singleLine" start="#" />
<comment name="multiLine" start="/*" end="*/" region="BlockComment"/>
</comments>
<keywords casesensitive="1" />
</general>
</language>
<!-- kate: replace-tabs on; tab-width 2; indent-width 2; -->