| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?xml version="1.0" encoding='UTF-8'?>
- <!DOCTYPE hrc PUBLIC "-//Cail Lomecb//DTD Colorer HRC take5//EN"
- "http://colorer.sf.net/2003/hrc.dtd">
- <hrc version="take5" xmlns="http://colorer.sf.net/2003/hrc"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://colorer.sf.net/2003/hrc http://colorer.sf.net/2003/hrc.xsd">
- <annotation><documentation>
- CG data files Syntax Highlighting
- </documentation><contributors><![CDATA[
- Created by:
- Iurii Tolskii <iurii.tolskii@communigatepro.ru>
- ]]></contributors></annotation>
- <prototype name="cgdata" group="main" description="CG data files">
- <location link="cgdata.hrc" />
- <filename>/\.(settings|dst|info|data|prefs|objdata)$/i</filename>
- </prototype>
- <type name="cgdata">
- <import type="def"/>
- <scheme name="cgdata">
- <!-- Строки -->
- <regexp match="/"(?:\\.|[^"\\])*"/" region="def:String"/>
- <!-- Числа (десятичные, шестнадцатеричные, восьмеричные, двоичные) -->
- <regexp match="/\b?(0x[0-9a-fA-F]+|0b[01]+|0o[0-7]+|0|[1-9]\d*)\b/" region="def:Number" />
- <!-- Блоки -->
- <block start="/(\{)/" end="/(\})/" scheme="cgdata" region00="def:Symbol" region01="def:PairStart" region10="def:Symbol" region11="def:PairEnd"/>
- <block start="/(\()/" end="/(\))/" scheme="cgdata" region00="def:Symbol" region01="def:PairStart" region10="def:Symbol" region11="def:PairEnd"/>
- <block start="/(\[)/" end="/(\])/" scheme="cgdata" region00="def:Symbol" region01="def:PairStart" region10="def:Symbol" region11="def:PairEnd"/>
- <!-- Ключевые слова -->
- <keywords region="def:Keyword" ignorecase="yes">
- <word name="yes"/>
- <word name="no"/>
- </keywords>
- <!-- Символы -->
- <keywords region="def:Symbol">
- <symb name="+"/>
- <symb name="-"/>
- <symb name="="/>
- <symb name="{" region="def:Error"/>
- <symb name="}" region="def:Error"/>
- <symb name="[" region="def:Error"/>
- <symb name="]" region="def:Error"/>
- <symb name=";"/>
- </keywords>
- </scheme>
- </type>
- </hrc>
|