I'm having trouble getting a PHP lexer working......
Code::Blocks only applies the "Start tag" style. None of the others are applied..... What is wrong here?
<?xml version="1.0"?>
<!DOCTYPE CodeBlocks_lexer_properties>
<CodeBlocks_lexer_properties>
<Lexer name="PHP"
index="4"
filemasks="*.php">
<Style name="Default"
index="118"
fg="0,0,0"
bg="255,255,255"
bold="0"
italics="0"
underlined="0"/>
<Style name="Start tag"
index="18"
fg="0,0,187"/>
<Style name="Complex variable"
index="104"
fg=""/>
<Style name="Double quote string"
index="119"
fg="0,0,255"/>
<Style name="Single quote string"
index="120"
fg="224,160,0"/>
<Style name="Keyword"
index="121"
fg="0,0,160"/>
<Style name="Number"
index="122"
fg="240,0,240"/>
<Style name="Variable"
index="123"
fg="160,0,0"/>
<Style name="Comment"
index="124"
fg="160,160,160"/>
<Style name="One line comment"
index="125"
fg="160,160,160"/>
<Style name="String variable"
index="126"
fg=""/>
<Style name="Operator"
index="127"
fg="255,0,0"/>
<SampleCode value="lexer_php.sample"/>
</Lexer>
</CodeBlocks_lexer_properties>
EDIT:
I probably need to add the PHP keywords, but still the other styles should work......