| 123456789101112131415161718192021222324252627282930313233 |
- <?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">
- <prototype name="cgdata" group="main" description="CG data files">
- <location link="cgdata.hrc" />
- <filename>/\.(settings|dst|info|data|prefs)$/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" />
- <!-- Ключевые слова -->
- <keywords region="def:Keyword">
- <word name="yes"/>
- <word name="no"/>
- </keywords>
- <!-- Символы -->
- <keywords region="def:Symbol">
- <symb name="+"/>
- <symb name="-"/>
- <symb name=";" region="def:SymbolStrong"/>
- </keywords>
- </scheme>
- </type>
- </hrc>
|