diff options
-rw-r--r-- | kate/data/javascript.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kate/data/javascript.xml b/kate/data/javascript.xml index e90f0b051..916d213c1 100644 --- a/kate/data/javascript.xml +++ b/kate/data/javascript.xml @@ -101,6 +101,7 @@ <DetectChar attribute="String" context="String" char=""" /> <DetectChar attribute="String" context="String SQ" char="'" /> + <DetectChar attribute="String" context="Template String" char="`" /> <IncludeRules context="##Doxygen" /> <Detect2Chars attribute="Comment" context="Comment" char="/" char1="/" /> @@ -154,6 +155,11 @@ <LineContinue/> <DetectChar attribute="String" context="#pop" char="'" /> </context> + <context attribute="String" lineEndContext="#pop" name="Template String"> + <HlCStringChar attribute="Char" /> + <LineContinue/> + <DetectChar attribute="String" context="#pop" char="`" /> + </context> <context attribute="Comment" lineEndContext="#pop" name="Comment"> <IncludeRules context="##Alerts" /> |