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/makefile.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/makefile.xml')
-rw-r--r-- | kate/data/makefile.xml | 58 |
1 files changed, 51 insertions, 7 deletions
diff --git a/kate/data/makefile.xml b/kate/data/makefile.xml index 7931c5a6a..fc322d737 100644 --- a/kate/data/makefile.xml +++ b/kate/data/makefile.xml @@ -2,7 +2,8 @@ <!DOCTYPE language SYSTEM "language.dtd"> <!-- Makefile syntaxfile v0.9 by Per Wigren <wigren@home.se> --> <!-- Modified by Joseph Wenninger <jowenn@kde.org> --> -<language name="Makefile" version="1.08" kateversion="2.4" section="Other" extensions="*makefile*;*Makefile*" mimetype="text/x-makefile" author="Per Wigren (wigren@home.se)" license=""> +<!-- Modified by Rui Santana <santana.rui@gmail.com> --> +<language name="Makefile" version="1.10" kateversion="2.4" section="Other" extensions="GNUmakefile;Makefile*;makefile*" mimetype="text/x-makefile" author="Per Wigren (wigren@home.se)" license=""> <highlighting> <list name = "keywords"> <item> include </item> @@ -15,20 +16,57 @@ <item> ifndef </item> <item> ifneq </item> </list> + <list name = "functions"> + <item> call </item> + <item> subst </item> + <item> patsubst </item> + <item> strip </item> + <item> findstring </item> + <item> filter </item> + <item> filter-out </item> + <item> sort </item> + <item> word </item> + <item> wordlist </item> + <item> words </item> + <item> firstword </item> + <item> lastword </item> + <item> dir </item> + <item> notdir </item> + <item> suffix </item> + <item> basename </item> + <item> addsuffix </item> + <item> addprefix </item> + <item> join </item> + <item> wildcard </item> + <item> realpath </item> + <item> abspath </item> + <item> if </item> + <item> or </item> + <item> and </item> + <item> foreach </item> + <item> value </item> + <item> eval </item> + <item> origin </item> + <item> flavor </item> + <item> shell </item> + <item> error </item> + <item> warning </item> + <item> info </item> + </list> <contexts> <context name="Normal" attribute="Normal Text" lineEndContext="#stay"> - <keyword attribute="Keyword" context="#stay" String="keywords"/> + <keyword attribute="Keyword" context="#stay" String="keywords"/> <RegExpr attribute="Variable" context="Value" String="[_\w\d]*\s*(?=:=|=)"/> - <RegExpr attribute="Target" context="#stay" String="[_\w\d-]*\s*:" firstNonSpace="true"/> - <RegExpr attribute="Section" context="#stay" String="^[.].*:"/> + <RegExpr attribute="Target" context="#stay" String="[_\w\d-]*\s*:" firstNonSpace="true"/> + <RegExpr attribute="Section" context="#stay" String="^[.].*:"/> <DetectChar attribute="String" context="String" char="""/> - <RegExpr attribute="Operator" context="VarFromNormal" String="[$][\({]"/> + <RegExpr attribute="Operator" context="VarFromNormal" String="[$][\({]"/> <Detect2Chars attribute="Special" context="#stay" char="\" char1="#"/> <Detect2Chars attribute="Special" context="#stay" char="\" char1="\"/> <AnyChar attribute="Operator" context="#stay" String="+*=%$():\;"/> <AnyChar attribute="Operator" context="Commands" String="@-" firstNonSpace="true"/> - <RegExpr attribute="Comment" context="#stay" String="#.*$"/> + <RegExpr attribute="Comment" context="#stay" String="#.*$"/> </context> <context attribute="String" lineEndContext="#pop" name="String"> @@ -51,9 +89,15 @@ </context> <context name="VarFromNormal" attribute="Variable" lineEndContext="#stay"> + <keyword attribute="Keyword" context="FunctionCall" String="functions"/> <AnyChar attribute="Operator" String=")}" context="#pop"/> </context> + <context name="FunctionCall" attribute="String" lineEndContext="#stay"> + <RegExpr attribute="Operator" context="VarFromNormal" String="[$][\({]"/> + <AnyChar attribute="Operator" String=")}" context="#pop#pop"/> + </context> + <context name="Commands" attribute="Normal Text" lineEndContext="#pop"> <RegExpr attribute="Operator" context="VarFromNormal" String="[$][\({]"/> <RegExpr attribute="Commands" context="#pop" String="[_\w-]*\b"/> @@ -70,7 +114,7 @@ <itemData name="Section" defStyleNum="dsOthers"/> <itemData name="Operator" defStyleNum="dsChar"/> <itemData name="Commands" defStyleNum="dsBaseN"/> - <itemData name="Special" defStyleNum="dsFloat"/> + <itemData name="Special" defStyleNum="dsFloat"/> </itemDatas> </highlighting> <general> |