diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch) | |
tree | 5ac38a06f3dde268dc7927dc155896926aaf7012 /kate/data/sml.xml | |
download | tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kate/data/sml.xml')
-rw-r--r-- | kate/data/sml.xml | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/kate/data/sml.xml b/kate/data/sml.xml new file mode 100644 index 000000000..eeae780fc --- /dev/null +++ b/kate/data/sml.xml @@ -0,0 +1,104 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE language SYSTEM "language.dtd"> +<language name="SML" version="1.06" kateversion="2.1" section="Sources" extensions="*.sml;*.ml" mimetype="" author="Christoph Cullmann (cullmann@kde.org)" license="LGPL"> + <highlighting> + <list name="keywords"> + <item> abstype </item> + <item> and </item> + <item> andalso </item> + <item> as </item> + <item> case </item> + <item> do </item> + <item> datatype </item> + <item> else </item> + <item> end </item> + <item> eqtype </item> + <item> exception </item> + <item> false </item> + <item> fn </item> + <item> fun </item> + <item> functor </item> + <item> handle </item> + <item> if </item> + <item> in </item> + <item> include </item> + <item> infix </item> + <item> infixr </item> + <item> let </item> + <item> local </item> + <item> nonfix </item> + <item> of </item> + <item> op </item> + <item> open </item> + <item> orelse </item> + <item> raise </item> + <item> rec </item> + <item> sharing </item> + <item> sig </item> + <item> signature </item> + <item> struct </item> + <item> structure </item> + <item> then </item> + <item> true </item> + <item> type </item> + <item> val </item> + <item> where </item> + <item> with </item> + <item> withtype </item> + <item> while </item> + </list> + <list name="types"> + <item> unit </item> + <item> int </item> + <item> real </item> + <item> char </item> + <item> string </item> + <item> substring </item> + <item> word </item> + <item> ref </item> + <item> array </item> + <item> vector </item> + <item> bool </item> + <item> list </item> + <item> option </item> + <item> order </item> + </list> + <contexts> + <context attribute="Normal Text" lineEndContext="#stay" name="Normal"> + <Detect2Chars attribute="Comment" context="Multiline/Inline Comment" char="(" char1="*" /> + <DetectChar attribute="String" context="String" char=""" /> + <keyword attribute="Keyword" context="#stay" String="keywords" /> + <keyword attribute="Data Type" context="#stay" String="types" /> + <Float attribute="Float" context="#stay"> + <AnyChar String="fF" attribute="Float" context="#stay"/> + </Float> + <HlCHex attribute="Decimal" context="#stay"/> + <Int attribute="Decimal" context="#stay" /> + </context> + <context attribute="Comment" lineEndContext="#stay" name="Multiline/Inline Comment"> + <Detect2Chars attribute="Comment" context="#pop" char="*" char1=")" /> + </context> + <context attribute="String" lineEndContext="#stay" name="String"> + <HlCStringChar attribute="String Char" context="#stay"/> + <DetectChar attribute="String" context="#pop" char=""" /> + </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="Float" defStyleNum="dsFloat"/> + <itemData name="String" defStyleNum="dsString"/> + <itemData name="Comment" defStyleNum="dsComment" /> + <itemData name="Notice" defStyleNum="dsString" /> + <itemData name="String Char" defStyleNum="dsChar" /> + </itemDatas> + </highlighting> + <general> + <keywords casesensitive="1" /> + <comments> + <comment name="multiLine" start="(*" end="*)" /> + </comments> + </general> +</language> |