mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-23 13:54:54 +02:00
Add XSD-based validation for the various XML files
And fix the themes and javascript.js functionlist that don’t match XSD. Fix #16618, close #16619
This commit is contained in:
parent
d767fd846c
commit
8435308b02
55
PowerEditor/Test/xmlValidator/autoCompletion.xsd
Normal file
55
PowerEditor/Test/xmlValidator/autoCompletion.xsd
Normal file
@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="NotepadPlus">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="AutoComplete">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Environment" minOccurs="0" maxOccurs="1">
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string">
|
||||
<xs:attribute type="xs:string" name="ignoreCase"/>
|
||||
<xs:attribute type="xs:string" name="startFunc"/>
|
||||
<xs:attribute type="xs:string" name="stopFunc"/>
|
||||
<xs:attribute type="xs:string" name="paramSeparator"/>
|
||||
<xs:attribute type="xs:string" name="terminal"/>
|
||||
<xs:attribute type="xs:string" name="additionalWordChar"/>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="KeyWord" minOccurs="1" maxOccurs="unbounded">
|
||||
<xs:complexType mixed="true">
|
||||
<xs:sequence>
|
||||
<xs:element name="Overload" minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Param" minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string">
|
||||
<xs:attribute type="xs:string" name="name" use="optional"/>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:attribute type="xs:string" name="retVal" use="optional"/>
|
||||
<xs:attribute type="xs:string" name="descr" use="optional"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:attribute type="xs:string" name="name" use="required"/>
|
||||
<xs:attribute type="xs:string" name="func" use="optional"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:attribute type="xs:string" name="language" use="optional"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
52
PowerEditor/Test/xmlValidator/config.xsd
Normal file
52
PowerEditor/Test/xmlValidator/config.xsd
Normal file
@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="NotepadPlus">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="GUIConfigs">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element maxOccurs="unbounded" name="GUIConfig">
|
||||
<xs:complexType mixed="true">
|
||||
<xs:sequence minOccurs="0">
|
||||
<xs:element maxOccurs="unbounded" name="ActiveTabs">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="cont" type="xs:integer" use="required"/>
|
||||
<xs:attribute name="activeTab" type="xs:integer" use="required"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:anyAttribute processContents="skip"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="FindHistory">
|
||||
<xs:complexType>
|
||||
<xs:anyAttribute processContents="skip"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="History">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="nbMaxFile" type="xs:integer" use="required"/>
|
||||
<xs:attribute name="inSubMenu" type="xs:string" use="required"/>
|
||||
<xs:attribute name="customLength" type="xs:integer" use="required"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="ProjectPanels">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element maxOccurs="unbounded" name="ProjectPanel">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="id" type="xs:integer" use="required"/>
|
||||
<xs:attribute name="workSpaceFile" type="xs:string" use="required"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
27
PowerEditor/Test/xmlValidator/contextMenu.xsd
Normal file
27
PowerEditor/Test/xmlValidator/contextMenu.xsd
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="NotepadPlus">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="ScintillaContextMenu">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element maxOccurs="unbounded" name="Item">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="MenuEntryName" type="xs:string" use="optional"/>
|
||||
<xs:attribute name="MenuItemName" type="xs:string" use="optional"/>
|
||||
<xs:attribute name="id" type="xs:unsignedShort" use="optional"/>
|
||||
<xs:attribute name="FolderName" type="xs:string" use="optional"/>
|
||||
<xs:attribute name="TranslateID" type="xs:string" use="optional"/>
|
||||
<xs:attribute name="PluginEntryName" type="xs:string" use="optional"/>
|
||||
<xs:attribute name="PluginCommandItemName" type="xs:string" use="optional"/>
|
||||
<xs:attribute name="ItemNameAs" type="xs:string" use="optional"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
109
PowerEditor/Test/xmlValidator/functionList.xsd
Normal file
109
PowerEditor/Test/xmlValidator/functionList.xsd
Normal file
@ -0,0 +1,109 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="NotepadPlus">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="functionList">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="parser">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="classRange" minOccurs="0" maxOccurs="1">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="className">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="nameExpr" minOccurs="1" maxOccurs="unbounded">
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string">
|
||||
<xs:attribute type="xs:string" name="expr" use="optional"/>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="function" minOccurs="0" maxOccurs="1">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="functionName">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="funcNameExpr" minOccurs="1" maxOccurs="unbounded">
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string">
|
||||
<xs:attribute type="xs:string" name="expr" use="optional"/>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:attribute type="xs:string" name="mainExpr"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:attribute type="xs:string" name="mainExpr" use="required"/>
|
||||
<xs:attribute type="xs:string" name="openSymbole" use="optional"/>
|
||||
<xs:attribute type="xs:string" name="closeSymbole" use="optional"/>
|
||||
<xs:attribute type="xs:string" name="displayMode" use="optional"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="function" minOccurs="0" maxOccurs="1">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="functionName" minOccurs="0" maxOccurs="1">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="nameExpr" minOccurs="1" maxOccurs="unbounded">
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string">
|
||||
<xs:attribute type="xs:string" name="expr" use="required"/>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="className" minOccurs="0" maxOccurs="1">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="nameExpr" minOccurs="1" maxOccurs="unbounded">
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string">
|
||||
<xs:attribute type="xs:string" name="expr" use="required"/>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:attribute type="xs:string" name="mainExpr"/>
|
||||
<xs:attribute type="xs:string" name="displayMode" use="optional"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:attribute type="xs:string" name="displayName"/>
|
||||
<xs:attribute type="xs:string" name="id"/>
|
||||
<xs:attribute type="xs:string" name="commentExpr"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
59
PowerEditor/Test/xmlValidator/langs.xsd
Normal file
59
PowerEditor/Test/xmlValidator/langs.xsd
Normal file
@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="NotepadPlus">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Languages">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element maxOccurs="unbounded" name="Language">
|
||||
<xs:complexType>
|
||||
<xs:sequence minOccurs="0">
|
||||
<xs:element maxOccurs="unbounded" name="Keywords">
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string">
|
||||
<xs:attribute name="name" use="required">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="instre1"/>
|
||||
<xs:enumeration value="instre2"/>
|
||||
<xs:enumeration value="type1"/>
|
||||
<xs:enumeration value="type2"/>
|
||||
<xs:enumeration value="type3"/>
|
||||
<xs:enumeration value="type4"/>
|
||||
<xs:enumeration value="type5"/>
|
||||
<xs:enumeration value="type6"/>
|
||||
<xs:enumeration value="type7"/>
|
||||
<xs:enumeration value="substyle1"/>
|
||||
<xs:enumeration value="substyle2"/>
|
||||
<xs:enumeration value="substyle3"/>
|
||||
<xs:enumeration value="substyle4"/>
|
||||
<xs:enumeration value="substyle5"/>
|
||||
<xs:enumeration value="substyle6"/>
|
||||
<xs:enumeration value="substyle7"/>
|
||||
<xs:enumeration value="substyle8"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="name" type="xs:string" use="required"/>
|
||||
<xs:attribute name="ext" type="xs:string" use="required"/>
|
||||
<xs:attribute name="commentLine" type="xs:string" use="optional"/>
|
||||
<xs:attribute name="commentStart" type="xs:string" use="optional"/>
|
||||
<xs:attribute name="commentEnd" type="xs:string" use="optional"/>
|
||||
<xs:attribute name="tabSettings" type="xs:integer" use="optional"/>
|
||||
<xs:attribute name="backspaceUnindent" type="xs:string" use="optional"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
48
PowerEditor/Test/xmlValidator/nativeLang.xsd
Normal file
48
PowerEditor/Test/xmlValidator/nativeLang.xsd
Normal file
@ -0,0 +1,48 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="NotepadPlus">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Native-Langue">
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element name="Menu">
|
||||
<xs:complexType>
|
||||
<xs:all>
|
||||
<xs:element name="Main" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="Splitter" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="TabBar" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="TrayIcon" minOccurs="0" maxOccurs="1"/>
|
||||
</xs:all>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="Dialog" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="MessageBox" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="ClipboardHistory" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="DocList" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="WindowsDlg" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="AsciiInsertion" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="DocumentMap" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="FunctionList" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="FolderAsWorkspace" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="FileBrowser" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="ProjectManager" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="MiscStrings" minOccurs="0" maxOccurs="1"/>
|
||||
</xs:all>
|
||||
<xs:attribute name="name" type="xs:string" use="required"/>
|
||||
<xs:attribute name="filename" type="xs:string" use="required"/>
|
||||
<xs:attribute name="version" type="xs:string" use="optional"/>
|
||||
<xs:attribute name="RTL" use="optional">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="yes"/>
|
||||
<xs:enumeration value="no"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
57
PowerEditor/Test/xmlValidator/shortcuts.xsd
Normal file
57
PowerEditor/Test/xmlValidator/shortcuts.xsd
Normal file
@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="NotepadPlus">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="InternalCommands"/>
|
||||
<xs:element name="Macros">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Macro">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element maxOccurs="unbounded" name="Action">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="type" type="xs:integer" use="required"/>
|
||||
<xs:attribute name="message" type="xs:integer" use="required"/>
|
||||
<xs:attribute name="wParam" type="xs:unsignedShort" use="required"/>
|
||||
<xs:attribute name="lParam" type="xs:integer" use="required"/>
|
||||
<xs:attribute name="sParam" type="xs:string" use="required"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="name" type="xs:string" use="required"/>
|
||||
<xs:attribute name="Ctrl" type="xs:string" use="required"/>
|
||||
<xs:attribute name="Alt" type="xs:string" use="required"/>
|
||||
<xs:attribute name="Shift" type="xs:string" use="required"/>
|
||||
<xs:attribute name="Key" type="xs:integer" use="required"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="UserDefinedCommands">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element maxOccurs="unbounded" name="Command">
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string">
|
||||
<xs:attribute name="name" type="xs:string" use="required"/>
|
||||
<xs:attribute name="Ctrl" type="xs:string" use="required"/>
|
||||
<xs:attribute name="Alt" type="xs:string" use="required"/>
|
||||
<xs:attribute name="Shift" type="xs:string" use="required"/>
|
||||
<xs:attribute name="Key" type="xs:integer" use="required"/>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="PluginCommands"/>
|
||||
<xs:element name="ScintillaKeys"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
23
PowerEditor/Test/xmlValidator/tabContext.xsd
Normal file
23
PowerEditor/Test/xmlValidator/tabContext.xsd
Normal file
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="NotepadPlus">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="TabContextMenu">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element maxOccurs="unbounded" name="Item">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="MenuEntryName" type="xs:string" use="optional"/>
|
||||
<xs:attribute name="MenuItemName" type="xs:string" use="optional"/>
|
||||
<xs:attribute name="FolderName" type="xs:string" use="optional"/>
|
||||
<xs:attribute name="id" type="xs:integer" use="optional"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
102
PowerEditor/Test/xmlValidator/theme.xsd
Normal file
102
PowerEditor/Test/xmlValidator/theme.xsd
Normal file
@ -0,0 +1,102 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:simpleType name="emptyInt">
|
||||
<!-- custom type: allows integer or empty string -->
|
||||
<xs:union>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:length value="0"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:integer"/>
|
||||
</xs:simpleType>
|
||||
</xs:union>
|
||||
</xs:simpleType>
|
||||
<xs:element name="NotepadPlus">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="LexerStyles" maxOccurs="1">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="LexerType" maxOccurs="unbounded">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="WordsStyle" maxOccurs="unbounded">
|
||||
<xs:complexType>
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="xs:string">
|
||||
<xs:attribute type="xs:string" name="name" use="required"/>
|
||||
<xs:attribute type="xs:integer" name="styleID" use="required"/>
|
||||
<xs:attribute type="xs:hexBinary" name="fgColor" use="optional"/>
|
||||
<xs:attribute type="xs:hexBinary" name="bgColor" use="optional"/>
|
||||
<xs:attribute type="xs:integer" name="colorStyle" use="optional"/>
|
||||
<xs:attribute type="xs:string" name="fontName" use="optional"/>
|
||||
<xs:attribute type="emptyInt" name="fontSize" use="optional"/>
|
||||
<xs:attribute type="emptyInt" name="fontStyle" use="optional"/>
|
||||
<xs:attribute name="keywordClass" use="optional">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="instre1"/>
|
||||
<xs:enumeration value="instre2"/>
|
||||
<xs:enumeration value="type1"/>
|
||||
<xs:enumeration value="type2"/>
|
||||
<xs:enumeration value="type3"/>
|
||||
<xs:enumeration value="type4"/>
|
||||
<xs:enumeration value="type5"/>
|
||||
<xs:enumeration value="type6"/>
|
||||
<xs:enumeration value="type7"/>
|
||||
<xs:enumeration value="substyle1"/>
|
||||
<xs:enumeration value="substyle2"/>
|
||||
<xs:enumeration value="substyle3"/>
|
||||
<xs:enumeration value="substyle4"/>
|
||||
<xs:enumeration value="substyle5"/>
|
||||
<xs:enumeration value="substyle6"/>
|
||||
<xs:enumeration value="substyle7"/>
|
||||
<xs:enumeration value="substyle8"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:attribute type="xs:string" name="name" use="required"/>
|
||||
<xs:attribute type="xs:string" name="desc" use="required"/>
|
||||
<xs:attribute type="xs:string" name="ext" use="required"/>
|
||||
</xs:complexType>
|
||||
<xs:unique name="unique-WordsStyle-styleID">
|
||||
<xs:selector xpath="WordsStyle"/>
|
||||
<xs:field xpath="@styleID"/>
|
||||
</xs:unique>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="GlobalStyles" maxOccurs="1">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="WidgetStyle" maxOccurs="unbounded">
|
||||
<xs:complexType>
|
||||
<xs:attribute type="xs:string" name="name" use="required"/>
|
||||
<xs:attribute type="xs:integer" name="styleID" use="required"/>
|
||||
<xs:attribute type="xs:hexBinary" name="fgColor" use="optional"/>
|
||||
<xs:attribute type="xs:hexBinary" name="bgColor" use="optional"/>
|
||||
<xs:attribute type="xs:integer" name="colorStyle" use="optional"/>
|
||||
<xs:attribute type="xs:string" name="fontName" use="optional"/>
|
||||
<xs:attribute type="emptyInt" name="fontSize" use="optional"/>
|
||||
<xs:attribute type="emptyInt" name="fontStyle" use="optional"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:unique name="unique-widgetstyle-name">
|
||||
<xs:selector xpath="WidgetStyle"/>
|
||||
<xs:field xpath="@name"/>
|
||||
</xs:unique>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
48
PowerEditor/Test/xmlValidator/toolbarButtons.xsd
Normal file
48
PowerEditor/Test/xmlValidator/toolbarButtons.xsd
Normal file
@ -0,0 +1,48 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:element name="NotepadPlus">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="ToolbarButtons">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Standard">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="Button">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="hide" type="xs:string" use="required"/>
|
||||
<xs:attribute name="index" type="xs:integer" use="required"/>
|
||||
<xs:attribute name="id" type="xs:unsignedShort" use="required"/>
|
||||
<xs:attribute name="name" type="xs:string" use="required"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="hideAll" type="xs:string" use="required"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="Plugin">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element maxOccurs="unbounded" name="Button">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="hide" type="xs:string" use="required"/>
|
||||
<xs:attribute name="name" type="xs:string" use="required"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="hideAll" type="xs:string" use="required"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="ToolBarIcons">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="icoFolderName" type="xs:string" use="required"/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
@ -30,15 +30,7 @@ def post_error(message):
|
||||
pprint(message)
|
||||
|
||||
|
||||
def parse_xml_file(filename_xml):
|
||||
|
||||
# open and read schema file
|
||||
#with open(filename_xsd, 'r') as schema_file:
|
||||
#schema_to_check = schema_file.read()
|
||||
|
||||
# open and read xml file
|
||||
#with open(filename_xml, 'r') as xml_file:
|
||||
# xml_to_check = xml_file.read()
|
||||
def parse_xml_file(filename_xml, filename_xsd = None):
|
||||
|
||||
# parse xml
|
||||
try:
|
||||
@ -49,58 +41,128 @@ def parse_xml_file(filename_xml):
|
||||
except IOError:
|
||||
#print('Invalid File')
|
||||
post_error(f'{filename_xml}: IOError Invalid File')
|
||||
|
||||
return
|
||||
|
||||
# check for XML syntax errors
|
||||
except etree.XMLSyntaxError as err:
|
||||
#print('XML Syntax Error, see error_syntax.log')
|
||||
post_error(f'{filename_xml}: {str(err.error_log)}: XMLSyntaxError Invalid File')
|
||||
return
|
||||
|
||||
# check for general XML errors
|
||||
except etree.LxmlError as err:
|
||||
#print('XML Error, see error_syntax.log')
|
||||
post_error(f'{filename_xml}: {str(err.error_log)}: LxmlError Invalid File')
|
||||
return
|
||||
|
||||
# unknown error
|
||||
except:
|
||||
#print('Unknown error.')
|
||||
post_error(f'{filename_xml}: Unknown error. Maybe check that no xml version is in the first line.')
|
||||
return
|
||||
|
||||
|
||||
|
||||
# now validate against correct schema
|
||||
if doc and filename_xsd is not None:
|
||||
try:
|
||||
xmlschema_doc = etree.parse(filename_xsd)
|
||||
|
||||
# error reading XSD
|
||||
except IOError:
|
||||
post_error(f'{filename_xml} | {filename_xsd}: IOError Invalid File')
|
||||
return
|
||||
|
||||
# error parsing XSD
|
||||
except etree.XMLSyntaxError as err:
|
||||
post_error(f'{filename_xml} | {filename_xsd}: {str(err.error_log)}: XMLSyntaxError Invalid File')
|
||||
return
|
||||
|
||||
# other error
|
||||
except Exception as err:
|
||||
post_error(f'{filename_xml} | {filename_xsd}: Unknown error {str(err.error_log)} reading Schema .xsd file.')
|
||||
return
|
||||
|
||||
# Next, extract the schema object from the schema_doc
|
||||
try:
|
||||
xmlschema = etree.XMLSchema(xmlschema_doc)
|
||||
#print(f'{filename_xml} | {filename_xsd}: SCHEMA OBJECT OK')
|
||||
|
||||
# error with Schema
|
||||
except etree.XMLSchemaError as err:
|
||||
post_error(f'{filename_xml} | {filename_xsd}: {str(err.error_log)}: XMLSchemaError')
|
||||
return
|
||||
|
||||
# other error
|
||||
except Exception as err:
|
||||
post_error(f'{filename_xml} | {filename_xsd}: Unknown error {str(err.error_log)} obtaining schema object')
|
||||
return
|
||||
|
||||
# finally, validate the XML against the schema
|
||||
if not xmlschema.validate(doc):
|
||||
post_error(f'{filename_xml} | {filename_xsd}: Validation error {str(xmlschema.error_log)}')
|
||||
return
|
||||
else:
|
||||
#print(f'{filename_xml} vs schema: VALIDATION OK')
|
||||
pass
|
||||
|
||||
|
||||
def parse_xml_files_from_APIs_dir():
|
||||
|
||||
for file in os.listdir("PowerEditor/installer/APIs"):
|
||||
if file.endswith(".xml"):
|
||||
#print(os.path.join("PowerEditor/installer/APIs", file))
|
||||
parse_xml_file(os.path.join("PowerEditor/installer/APIs", file))
|
||||
parse_xml_file(os.path.join("PowerEditor/installer/APIs", file), os.path.join("PowerEditor", "Test", "xmlValidator", "autoCompletion.xsd"))
|
||||
|
||||
def parse_xml_files_from_functionList_dir():
|
||||
|
||||
for file in os.listdir("PowerEditor/installer/functionList"):
|
||||
if file.endswith(".xml"):
|
||||
#print(os.path.join("PowerEditor/installer/functionList", file))
|
||||
parse_xml_file(os.path.join("PowerEditor/installer/functionList", file))
|
||||
xsd_filename = None
|
||||
if not file.endswith("overrideMap.xml"):
|
||||
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "functionList.xsd")
|
||||
|
||||
parse_xml_file(os.path.join("PowerEditor/installer/functionList", file), xsd_filename)
|
||||
|
||||
def parse_xml_files_from_nativeLang_dir():
|
||||
|
||||
for file in os.listdir("PowerEditor/installer/nativeLang"):
|
||||
if file.endswith(".xml"):
|
||||
#print(os.path.join("PowerEditor/installer/nativeLang", file))
|
||||
parse_xml_file(os.path.join("PowerEditor/installer/nativeLang", file))
|
||||
parse_xml_file(os.path.join("PowerEditor/installer/nativeLang", file), os.path.join("PowerEditor", "Test", "xmlValidator", "nativeLang.xsd"))
|
||||
|
||||
def parse_xml_files_from_themes_dir():
|
||||
|
||||
for file in os.listdir("PowerEditor/installer/themes"):
|
||||
if file.endswith(".xml"):
|
||||
#print(os.path.join("PowerEditor/installer/themes", file))
|
||||
parse_xml_file(os.path.join("PowerEditor/installer/themes", file))
|
||||
parse_xml_file(os.path.join("PowerEditor/installer/themes", file), os.path.join("PowerEditor", "Test", "xmlValidator", "theme.xsd"))
|
||||
|
||||
|
||||
def parse_xml_files_from_src_dir():
|
||||
|
||||
for file in os.listdir("PowerEditor/src"):
|
||||
if file.endswith(".xml"):
|
||||
#print(os.path.join("PowerEditor/src", file))
|
||||
parse_xml_file(os.path.join("PowerEditor/src", file))
|
||||
xsd_filename = None
|
||||
if file.endswith("stylers.model.xml"):
|
||||
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "theme.xsd")
|
||||
elif file.endswith("langs.model.xml"):
|
||||
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "langs.xsd")
|
||||
elif file.endswith("toolbarButtonsConf_example.xml"):
|
||||
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "toolbarButtons.xsd")
|
||||
elif file.endswith("tabContextMenu_example.xml"):
|
||||
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "tabContext.xsd")
|
||||
elif file.endswith("contextMenu.xml"):
|
||||
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "contextMenu.xsd")
|
||||
elif file.endswith("shortcuts.xml"):
|
||||
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "shortcuts.xsd")
|
||||
elif file.endswith("config.4zipPackage.xml"):
|
||||
xsd_filename = os.path.join("PowerEditor", "Test", "xmlValidator", "config.xsd")
|
||||
parse_xml_file(os.path.join("PowerEditor/src", file), xsd_filename)
|
||||
|
||||
print('Start syntax check for xml files.')
|
||||
print('Start syntax check and validation for XML files.')
|
||||
parse_xml_files_from_APIs_dir()
|
||||
parse_xml_files_from_functionList_dir()
|
||||
parse_xml_files_from_nativeLang_dir()
|
||||
|
@ -24,15 +24,15 @@
|
||||
</className>
|
||||
<function mainExpr="\b(?:(?:static|async)\s+)?\b(?!if|while|for|switch)\b[A-Za-z_$][\w$]*\s*\([^\)]*\)\s*{">
|
||||
<functionName>
|
||||
<funcNameExpr expr="[A-Za-z_$][\w$]*\s*\(" />-->
|
||||
<funcNameExpr expr="[A-Za-z_$][\w$]*" />-->
|
||||
<funcNameExpr expr="[A-Za-z_$][\w$]*\s*\(" />
|
||||
<funcNameExpr expr="[A-Za-z_$][\w$]*" />
|
||||
</functionName>
|
||||
</function>
|
||||
</classRange>
|
||||
|
||||
<function
|
||||
mainExpr="((^|\s+|[;\}\.])([A-Za-z_$][\w$]*\.)*[A-Za-z_$][\w$]*\s*[=:]|^|[\s;\}]+)\s*function(\s+[A-Za-z_$][\w$]*)?\s*\([^\)\(]*\)[\n\s]*\{"
|
||||
>
|
||||
>
|
||||
<functionName>
|
||||
<nameExpr expr="[A-Za-z_$][\w$]*\s*[=:]|[A-Za-z_$][\w$]*\s*\(" />
|
||||
<nameExpr expr="[A-Za-z_$][\w$]*" />
|
||||
@ -44,4 +44,4 @@
|
||||
</function>
|
||||
</parser>
|
||||
</functionList>
|
||||
</NotepadPlus>
|
||||
</NotepadPlus>
|
||||
|
@ -605,7 +605,6 @@ Credits:
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="IDENTIFIER" styleID="11" fgColor="EB939A" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="COMMENTBLOCK" styleID="12" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="STRINGEOL" styleID="12" fgColor="55E439" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="BUILTINS" styleID="14" fgColor="F8F8F8" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="instre2" />
|
||||
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
|
||||
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
|
||||
@ -868,8 +867,6 @@ Credits:
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="EFE900" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="type4" />
|
||||
|
@ -245,14 +245,6 @@ Credits:
|
||||
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
|
||||
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
|
||||
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
|
||||
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
|
||||
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
|
||||
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
|
||||
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
|
||||
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
|
||||
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
|
||||
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
|
||||
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
|
||||
</LexerType>
|
||||
<LexerType name="tcl" desc="TCL" ext="">
|
||||
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
|
||||
@ -611,7 +603,6 @@ Credits:
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="IDENTIFIER" styleID="11" fgColor="8DA6CE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="COMMENTBLOCK" styleID="12" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="STRINGEOL" styleID="12" fgColor="61CE3C" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="BUILTINS" styleID="14" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="instre2" />
|
||||
</LexerType>
|
||||
<LexerType name="batch" desc="Batch" ext="">
|
||||
@ -866,8 +857,6 @@ Credits:
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="type4" />
|
||||
|
@ -603,7 +603,6 @@ Credits:
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="IDENTIFIER" styleID="11" fgColor="D77261" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="COMMENTBLOCK" styleID="12" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="STRINGEOL" styleID="12" fgColor="7CA563" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="BUILTINS" styleID="14" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="instre2" />
|
||||
</LexerType>
|
||||
<LexerType name="batch" desc="Batch" ext="">
|
||||
@ -858,8 +857,6 @@ Credits:
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="type4" />
|
||||
|
@ -468,13 +468,13 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="COMMENT LINE" styleID="1" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="COMMENT" styleID="2" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="5" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="5" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="16" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="16" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="16" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="F57F3D" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="8F8F8F" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="3" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="4" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="5" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="6" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="7" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="8" fgColor="F57F3D" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="9" fgColor="8F8F8F" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
|
||||
</LexerType>
|
||||
<LexerType name="haskell" desc="Haskell" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
|
||||
@ -860,7 +860,6 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="8F8F8F" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
|
||||
<WordsStyle name="IDENTIFIER" styleID="11" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="COMMENTBLOCK" styleID="12" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STRINGEOL" styleID="12" fgColor="F57F3D" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="BUILTINS" styleID="14" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="10" keywordClass="instre2" />
|
||||
</LexerType>
|
||||
<LexerType name="r" desc="R" ext="">
|
||||
@ -1100,8 +1099,6 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="A88AB6" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
|
||||
|
@ -653,13 +653,13 @@ License: GPL2
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="COMMENT LINE" styleID="1" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" />
|
||||
<WordsStyle name="COMMENT" styleID="2" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="5" fgColor="FFEBDD" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="5" fgColor="8CD0D3" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="16" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="16" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="16" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="CC9393" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="9F9D6D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="3" fgColor="FFEBDD" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="4" fgColor="8CD0D3" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="5" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="6" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="7" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="8" fgColor="CC9393" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="9" fgColor="9F9D6D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
|
||||
</LexerType>
|
||||
<LexerType name="haskell" desc="Haskell" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
|
||||
@ -1631,7 +1631,7 @@ License: GPL2
|
||||
<WordsStyle name="DEFAULT" styleID="11" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="INSTRUCTION WORD" styleID="5" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="TYPE WORD" styleID="16" fgColor="CEDF99" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="WINDOW INSTRUCTION" styleID="19" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="" />
|
||||
<WordsStyle name="WINDOW INSTRUCTION" styleID="19" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
|
||||
<WordsStyle name="NUMBER" styleID="4" fgColor="8CD0D3" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="CC9393" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STRING RAW" styleID="20" fgColor="CC9393" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" />
|
||||
|
@ -836,8 +836,6 @@ https://notepad-plus-plus.org/donate/
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="0080C0" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="8080FF" bgColor="FFFFCC" fontName="" fontStyle="1" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="808000" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="339999" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="800000" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="66FF00" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
|
||||
|
@ -958,8 +958,6 @@ so your enhanced file can be included in Notepad++ future release.
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="0080C0" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="8080FF" bgColor="FFFFCC" fontName="" fontStyle="1" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="808000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="000080" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="0080FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="800000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="8000FF" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
|
||||
|
@ -477,13 +477,13 @@ Installation:
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="COMMENT LINE" styleID="1" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />
|
||||
<WordsStyle name="COMMENT" styleID="2" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="5" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="5" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="16" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="16" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="16" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="BCBB80" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="D6C479" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="3" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="4" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="5" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="6" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="7" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="8" fgColor="BCBB80" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="9" fgColor="D6C479" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
|
||||
</LexerType>
|
||||
<LexerType name="haskell" desc="Haskell" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
|
||||
@ -1123,8 +1123,6 @@ Installation:
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="D92B10" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="7578DB" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="C11418" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="C11418" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="0088CE" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="0088CE" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="D92B10" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
|
||||
|
@ -862,8 +862,6 @@ Credits:
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="909993" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="type4" />
|
||||
|
@ -244,7 +244,7 @@ Credits:
|
||||
<WordsStyle name="FUNCTION" styleID="20" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="IDENTIFIER" styleID="21" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="1" fontSize="" />
|
||||
<!-- TYPEDEF styling applies to type1..type4 lists from langs.xml, but only associated with type1 in stylers/themes -->
|
||||
<WordsStyle name="TYPEDEF" styleID="20" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="TYPEDEF" styleID="22" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="MU" styleID="23" fgColor="E6DB74" bgColor="272822" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="POSITIONAL" styleID="24" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="ASSOCIATIVE" styleID="25" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="0" fontSize="" />
|
||||
@ -862,8 +862,6 @@ Credits:
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="A6E22E" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="type4" />
|
||||
|
@ -478,13 +478,13 @@ Installation:
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="COMMENT LINE" styleID="1" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />
|
||||
<WordsStyle name="COMMENT" styleID="2" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="5" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="5" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="16" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="16" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="16" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="ffdc87" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="ffee88" bgColor="58693D" fontName="" fontStyle="1" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="3" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="4" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="5" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="6" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="7" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="8" fgColor="ffdc87" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="9" fgColor="ffee88" bgColor="58693D" fontName="" fontStyle="1" fontSize="" />
|
||||
</LexerType>
|
||||
<LexerType name="haskell" desc="Haskell" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
|
||||
@ -774,8 +774,8 @@ Installation:
|
||||
<WordsStyle name="TRANSLATION" styleID="44" fgColor="F2C476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC DELIMITER" styleID="22" fgColor="FFAABE" bgColor="7C7411" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC SINGLEQUOTE" styleID="23" fgColor="ffdc87" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC DOUBLEQUOTE" fgColor="ffdc87" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC BACKTICK" fgColor="bfb8c4" bgColor="7e8a28" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC DOUBLEQUOTE" styleID="24" fgColor="ffdc87" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC BACKTICK" styleID="25" fgColor="bfb8c4" bgColor="7e8a28" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="VAR IN STRING" styleID="43" fgColor="F2C476" bgColor="58693D" fontName="" fontStyle="3" fontSize="" />
|
||||
<WordsStyle name="VAR IN REGEX" styleID="54" fgColor="F2C476" bgColor="58693D" fontName="" fontStyle="3" fontSize="" />
|
||||
<WordsStyle name="VAR IN REGEX SUBSTITUTION" styleID="55" fgColor="F2C476" bgColor="58693D" fontName="" fontStyle="3" fontSize="" />
|
||||
@ -1123,8 +1123,6 @@ Installation:
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="d3d09d" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="561e0f" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="d3d09d" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="FFBBAA" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="afcf90" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="afcf90" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="d3d09d" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
|
||||
|
@ -475,13 +475,13 @@ Installation:
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="COMMENT LINE" styleID="1" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />
|
||||
<WordsStyle name="COMMENT" styleID="2" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="5" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="5" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="16" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="16" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="16" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="C00058" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="010101" bgColor="BA9C80" fontName="" fontStyle="1" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="3" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="4" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="5" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="6" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="7" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="8" fgColor="C00058" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="9" fgColor="010101" bgColor="BA9C80" fontName="" fontStyle="1" fontSize="" />
|
||||
</LexerType>
|
||||
<LexerType name="haskell" desc="Haskell" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
|
||||
@ -1120,8 +1120,6 @@ Installation:
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="D92B10" bgColor="BA9C80" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="3b4092" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="870087" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="870087" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="C00058" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="C00058" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="D92B10" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
|
||||
|
@ -623,7 +623,6 @@ Notepad++ Custom Style
|
||||
<WordsStyle name="HEX NUMBER" styleID="8" fgColor="FFCD22" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STRING" styleID="10" fgColor="EC7600" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STRING EOL" styleID="11" fgColor="EC7600" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="CHARACTER" styleID="7" fgColor="EC7600" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="13" fgColor="E8E2B7" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="ASM" styleID="14" fgColor="D39745" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="COMMENT" styleID="2" fgColor="66747B" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
|
||||
@ -777,7 +776,7 @@ Notepad++ Custom Style
|
||||
<WordsStyle name="IDENTIFIER" styleID="21" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
|
||||
<!-- TYPEDEF styling applies to type1..type4 lists from langs.xml, but only associated with type1 in stylers/themes -->
|
||||
<WordsStyle name="TYPEDEF" styleID="22" fgColor="93C763" bgColor="293134" fontName="" fontStyle="" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="MU" styleID="8" fgColor="EC7600" bgColor="293134" fontName="" fontStyle="" fontSize="" />
|
||||
<WordsStyle name="MU" styleID="23" fgColor="EC7600" bgColor="293134" fontName="" fontStyle="" fontSize="" />
|
||||
<WordsStyle name="POSITIONAL" styleID="24" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="ASSOCIATIVE" styleID="25" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="CALLABLE" styleID="26" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
|
||||
@ -973,8 +972,6 @@ Notepad++ Custom Style
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
|
||||
|
@ -874,8 +874,6 @@ Credits:
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="type4" />
|
||||
|
@ -853,8 +853,6 @@ http://sourceforge.net/donate/index.php?group_id=95717
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
|
||||
|
@ -486,13 +486,13 @@ Installation:
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="COMMENT LINE" styleID="1" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />
|
||||
<WordsStyle name="COMMENT" styleID="2" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="5" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="5" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="16" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="16" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="16" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="586E75" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="3" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="4" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="5" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="6" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="7" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="8" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="9" fgColor="586E75" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
|
||||
</LexerType>
|
||||
<LexerType name="haskell" desc="Haskell" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
|
||||
@ -782,8 +782,8 @@ Installation:
|
||||
<WordsStyle name="TRANSLATION" styleID="44" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC DELIMITER" styleID="22" fgColor="CB4B16" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC SINGLEQUOTE" styleID="23" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC DOUBLEQUOTE" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC BACKTICK" fgColor="073642" bgColor="6C71C4" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC DOUBLEQUOTE" styleID="24" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC BACKTICK" styleID="25" fgColor="073642" bgColor="6C71C4" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="VAR IN STRING" styleID="43" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
|
||||
<WordsStyle name="VAR IN REGEX" styleID="54" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
|
||||
<WordsStyle name="VAR IN REGEX SUBSTITUTION" styleID="55" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
|
||||
@ -797,7 +797,7 @@ Installation:
|
||||
<WordsStyle name="FORMAT BODY" styleID="42" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="DATA SECTION" styleID="21" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="" fontSize="" />
|
||||
<WordsStyle name="POD" styleID="3" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="" fontSize="" />
|
||||
<WordsStyle name="POD VERBATIM" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
|
||||
<WordsStyle name="POD VERBATIM" styleID="31" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
|
||||
<WordsStyle name="ERROR" styleID="1" fgColor="D33682" bgColor="FDF6E3" fontName="" fontStyle="" fontSize="" />
|
||||
</LexerType>
|
||||
<LexerType name="php" desc="php" ext="">
|
||||
@ -1131,8 +1131,6 @@ Installation:
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="CB4B16" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="6C71C4" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="DC322F" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="DC322F" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="268BD2" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="268BD2" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="CB4B16" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
|
||||
|
@ -620,13 +620,13 @@ Installation:
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="COMMENT LINE" styleID="1" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
|
||||
<WordsStyle name="COMMENT" styleID="2" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="5" fgColor="839496" bgColor="002B36" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="5" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="16" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="16" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="16" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="93A1A1" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="3" fgColor="839496" bgColor="002B36" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="4" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="5" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="6" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="7" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="8" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="9" fgColor="93A1A1" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
|
||||
</LexerType>
|
||||
<LexerType name="haskell" desc="Haskell" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
|
||||
@ -1102,7 +1102,7 @@ Installation:
|
||||
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
|
||||
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
|
||||
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
|
||||
<WordsStyle name="USER KEYWORDS 2" styleID="208" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
|
||||
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
|
||||
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
|
||||
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
|
||||
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
|
||||
@ -1177,7 +1177,7 @@ Installation:
|
||||
<WordsStyle name="COMMENTBLOCK" styleID="12" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
|
||||
<WordsStyle name="STRINGEOL" styleID="13" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="BUILTINS" styleID="14" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="10" keywordClass="instre2" />
|
||||
<WordsStyle name="F STRING" styleID="17" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="F STRING" styleID="16" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="F CHARACTER" styleID="17" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="F TRIPLE" styleID="18" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="F TRIPLEDOUBLE" styleID="19" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
|
||||
@ -1521,8 +1521,6 @@ Installation:
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="CB4B16" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="6C71C4" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="DC322F" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="DC322F" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="268BD2" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="268BD2" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="CB4B16" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
|
||||
|
@ -863,8 +863,6 @@ Credits:
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="instre1"/>
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="instre2"/>
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="9B703F" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="type1"/>
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10"/>
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10"/>
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="type2"/>
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="type3"/>
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="type4"/>
|
||||
|
@ -579,7 +579,6 @@ http://sourceforge.net/donate/index.php?group_id=95717
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
|
||||
<WordsStyle name="IDENTIFIER" styleID="11" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="COMMENTBLOCK" styleID="12" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
|
||||
<WordsStyle name="STRINGEOL" styleID="12" fgColor="FFFF00" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="BUILTINS" styleID="14" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="10" keywordClass="instre2" />
|
||||
<WordsStyle name="F STRING" styleID="16" fgColor="66FF00" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="F CHARACTER" styleID="17" fgColor="66FF00" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
|
||||
@ -834,8 +833,6 @@ http://sourceforge.net/donate/index.php?group_id=95717
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="0080C0" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="8080FF" bgColor="FFFFCC" fontName="" fontStyle="1" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="808000" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="339999" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="800000" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="66FF00" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
|
||||
|
@ -633,13 +633,13 @@ License: GPL2
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="COMMENT LINE" styleID="1" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" />
|
||||
<WordsStyle name="COMMENT" styleID="2" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="5" fgColor="FFEBDD" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="5" fgColor="8CD0D3" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="16" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="16" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="16" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="CC9393" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="9F9D6D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="3" fgColor="FFEBDD" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="4" fgColor="8CD0D3" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="5" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="6" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="7" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="8" fgColor="CC9393" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="9" fgColor="9F9D6D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
|
||||
</LexerType>
|
||||
<LexerType name="haskell" desc="Haskell" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
|
||||
@ -692,10 +692,10 @@ License: GPL2
|
||||
<WordsStyle name="CDATA" styleID="17" fgColor="C89191" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="VALUE" styleID="19" fgColor="8CD0D3" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
|
||||
<WordsStyle name="ENTITY" styleID="10" fgColor="CFBFAF" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
|
||||
<WordsStyle name="USER TAGS1" styleID="192" ffgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
|
||||
<WordsStyle name="USER TAGS2" styleID="193" ffgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
|
||||
<WordsStyle name="USER TAGS3" styleID="194" ffgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
|
||||
<WordsStyle name="USER TAGS4" styleID="195" ffgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
|
||||
<WordsStyle name="USER TAGS1" styleID="192" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
|
||||
<WordsStyle name="USER TAGS2" styleID="193" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
|
||||
<WordsStyle name="USER TAGS3" styleID="194" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
|
||||
<WordsStyle name="USER TAGS4" styleID="195" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
|
||||
<WordsStyle name="USER ATTRIBUTES1" styleID="196" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
|
||||
<WordsStyle name="USER ATTRIBUTES2" styleID="197" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
|
||||
<WordsStyle name="USER ATTRIBUTES3" styleID="198" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
|
||||
@ -1599,7 +1599,7 @@ License: GPL2
|
||||
<WordsStyle name="DEFAULT" styleID="11" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="INSTRUCTION WORD" styleID="5" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="TYPE WORD" styleID="16" fgColor="CEDF99" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="WINDOW INSTRUCTION" styleID="19" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="" />
|
||||
<WordsStyle name="WINDOW INSTRUCTION" styleID="19" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
|
||||
<WordsStyle name="NUMBER" styleID="4" fgColor="8CD0D3" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="CC9393" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STRING RAW" styleID="20" fgColor="CC9393" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" />
|
||||
|
@ -475,13 +475,13 @@ Installation:
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="COMMENT LINE" styleID="1" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />
|
||||
<WordsStyle name="COMMENT" styleID="2" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="5" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="5" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="16" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="16" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="16" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="00005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="GLOBAL" styleID="3" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="EVENT" styleID="4" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="5" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="CONTROL" styleID="6" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="COMMAND" styleID="7" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STRING" styleID="8" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="OPERATOR" styleID="9" fgColor="00005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
|
||||
</LexerType>
|
||||
<LexerType name="haskell" desc="Haskell" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
|
||||
@ -771,7 +771,7 @@ Installation:
|
||||
<WordsStyle name="TRANSLATION" styleID="44" fgColor="5F5F00" bgColor="D7D7AF" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC DELIMITER" styleID="22" fgColor="870000" bgColor="afaf87" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC SINGLEQUOTE" styleID="23" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC DOUBLEQUOTE" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC DOUBLEQUOTE" styleID="24" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="HEREDOC BACKTICK" styleID="25" fgColor="af0000" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="VAR IN STRING" styleID="43" fgColor="5F5F00" bgColor="D7D7AF" fontName="" fontStyle="3" fontSize="" />
|
||||
<WordsStyle name="VAR IN REGEX" styleID="54" fgColor="5F5F00" bgColor="D7D7AF" fontName="" fontStyle="3" fontSize="" />
|
||||
@ -1120,8 +1120,6 @@ Installation:
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="00005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="870000" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="af5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="af5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="5f005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
|
||||
|
@ -738,7 +738,6 @@
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="IDENTIFIER" styleID="11" fgColor="C0C0C0" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="COMMENTBLOCK" styleID="12" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="STRINGEOL" styleID="12" fgColor="008080" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="BUILTINS" styleID="14" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="10" keywordClass="instre2" />
|
||||
</LexerType>
|
||||
<LexerType name="raku" desc="Raku" ext="">
|
||||
@ -949,8 +948,6 @@
|
||||
<WordsStyle name="INSTRUCTION" styleID="8" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
|
||||
<WordsStyle name="STD OPERATOR" styleID="9" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
|
||||
<WordsStyle name="ATTRIBUTE" styleID="10" fgColor="8080FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="type1" />
|
||||
<WordsStyle name="DIRECTIVE" styleID="9" fgColor="808000" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
|
||||
<WordsStyle name="DIRECTIVE OPERAND" styleID="10" fgColor="000080" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
|
||||
<WordsStyle name="STD FUNCTION" styleID="11" fgColor="0080FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="type2" />
|
||||
<WordsStyle name="STD PACKAGE" styleID="12" fgColor="800000" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="type3" />
|
||||
<WordsStyle name="STD TYPE" styleID="13" fgColor="8000FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
|
||||
|
Loading…
x
Reference in New Issue
Block a user