Add TOML configuration file format

Ref: https://github.com/notepad-plus-plus/notepad-plus-plus/pull/15564#issuecomment-2305174561

Fix #5631, close #15576
This commit is contained in:
Don Ho 2024-08-24 18:14:47 +02:00
parent b32c07f746
commit fb11abc5c0
36 changed files with 603 additions and 103 deletions

View File

@ -0,0 +1,58 @@
# This is a TOML document.
title = "TOML Example"
[owner]
name = "Tom Preston-Werner"
dob = 1979-05-27T07:32:00-08:00 # First class dates
[database]
server = "192.168.1.1"
ports = [ 8000, 8001, 8002 ]
connection_max = 5000
enabled = true
[servers]
toto = "titi"
# Indentation (spaces) is allowed but not required
[servers.alpha]
ip = "10.0.0.1"
dc = "eqdc10"
# Indentation (tabs) is allowed but not required
[servers.beta]
ip = "10.0.0.2"
dc = "eqdc10"
# No indentation is correct too
[servers.gamma]
ip = "10.0.0.3"
dc = "eqdc10"
[servers_underscore]
ip = "10.0.0.4"
dc = "eqdc10"
[servers."double-quot"]
ip = "10.0.0.4"
dc = "eqdc10"
[servers.'single-quot']
ip = "10.0.0.4"
dc = "eqdc10"
[clients]
data = [ ["gamma", "delta"], [1, 2] ]
[clients-2nd-group]
data2 = "Another data"
# Line breaks are OK when inside arrays
hosts = [
"alpha",
"omega"
]

View File

@ -0,0 +1 @@
{"leaves":["owner","database","servers","servers.alpha","servers.beta","servers.gamma","servers_underscore","servers.\"double-quot\"","servers.'single-quot'","clients","clients-2nd-group"],"root":"unitTest"}

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!-- ==========================================================================\
|
| To learn how to make your own language parser, please check the following
| link:
| https://npp-user-manual.org/docs/function-list/
|
\=========================================================================== -->
<NotepadPlus>
<functionList>
<!-- ========================================= [ Initialisation File ] -->
<!-- File format used for TOML -->
<parser
displayName="TOML Table"
id ="toml_table"
commentExpr="(?x)
(?m-s:[#].*$) # Single Line Comment
"
>
<function
mainExpr="^\h*[\[[\w\.&quot;\-&apos;]+\]"
>
<functionName>
<nameExpr expr="[\w\.&quot;\-&apos;]+" />
</functionName>
</function>
</parser>
</functionList>
</NotepadPlus>

View File

@ -596,6 +596,23 @@ Credits:
<WordsStyle name="COMMAND" styleID="4" fgColor="EB939A" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="COMMAND" styleID="4" fgColor="EB939A" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="TEXT" styleID="5" fgColor="55E439" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="TEXT" styleID="5" fgColor="55E439" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="2A211C" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="2A211C" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="2A211C" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="2A211C" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="2A211C" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="2A211C" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="2A211C" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="2A211C" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="2A211C" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="2A211C" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="2A211C" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="2A211C" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="2A211C" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="nsis" desc="NSIS" ext=""> <LexerType name="nsis" desc="NSIS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="1" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="COMMENTLINE" styleID="1" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />

View File

@ -594,6 +594,23 @@ Credits:
<WordsStyle name="COMMAND" styleID="4" fgColor="8DA6CE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="COMMAND" styleID="4" fgColor="8DA6CE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="TEXT" styleID="5" fgColor="61CE3C" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="TEXT" styleID="5" fgColor="61CE3C" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="0C1021" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="0C1021" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="0C1021" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="0C1021" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="0C1021" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="0C1021" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="0C1021" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="0C1021" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="0C1021" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="0C1021" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="0C1021" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="0C1021" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="0C1021" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="0C1021" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="0C1021" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="nsis" desc="NSIS" ext=""> <LexerType name="nsis" desc="NSIS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="1" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="COMMENTLINE" styleID="1" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />

View File

@ -586,6 +586,23 @@ Credits:
<WordsStyle name="COMMAND" styleID="4" fgColor="D77261" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="COMMAND" styleID="4" fgColor="D77261" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="TEXT" styleID="5" fgColor="7CA563" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="TEXT" styleID="5" fgColor="7CA563" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="1A0F0B" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="1A0F0B" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="1A0F0B" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="1A0F0B" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="1A0F0B" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="1A0F0B" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="1A0F0B" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="1A0F0B" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="1A0F0B" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="1A0F0B" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="1A0F0B" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="nsis" desc="NSIS" ext=""> <LexerType name="nsis" desc="NSIS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="1" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="COMMENTLINE" styleID="1" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />

View File

@ -983,6 +983,23 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
<WordsStyle name="COMMAND" styleID="4" fgColor="E6C74E" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" /> <WordsStyle name="COMMAND" styleID="4" fgColor="E6C74E" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TEXT" styleID="5" fgColor="F57F3D" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="TEXT" styleID="5" fgColor="F57F3D" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="2E2E2E" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="2E2E2E" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="vb" desc="VB / VBS" ext=""> <LexerType name="vb" desc="VB / VBS" ext="">
<WordsStyle name="DEFAULT" styleID="7" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="7" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="COMMENT" styleID="1" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />

View File

@ -1519,6 +1519,23 @@ License: GPL2
<WordsStyle name="COMMAND" styleID="4" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" /> <WordsStyle name="COMMAND" styleID="4" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TEXT" styleID="5" fgColor="CC9393" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="TEXT" styleID="5" fgColor="CC9393" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="3F3F3F" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="txt2tags" desc="txt2tags" ext=""> <LexerType name="txt2tags" desc="txt2tags" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="SPECIAL" styleID="1" fgColor="DCDCDC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="SPECIAL" styleID="1" fgColor="DCDCDC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />

View File

@ -568,6 +568,23 @@ https://notepad-plus-plus.org/donate/
<WordsStyle name="COMMAND" styleID="4" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" /> <WordsStyle name="COMMAND" styleID="4" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TEXT" styleID="5" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="4" fontSize="" /> <WordsStyle name="TEXT" styleID="5" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="4" fontSize="" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="000000" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="nsis" desc="NSIS" ext=""> <LexerType name="nsis" desc="NSIS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" /> <WordsStyle name="COMMENT" styleID="1" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />

View File

@ -841,6 +841,23 @@ so your enhanced file can be included in Notepad++ future release.
<WordsStyle name="COMMAND" styleID="4" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" /> <WordsStyle name="COMMAND" styleID="4" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TEXT" styleID="5" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="TEXT" styleID="5" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="008000" bgColor="FFB0FF" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="8000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF0000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="804000" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FFFF80" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" colorStyle="3" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="808000" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="808080" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="808080" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="808080" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="808080" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="8080FF" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="FF8040" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="vb" desc="VB / VBS" ext=""> <LexerType name="vb" desc="VB / VBS" ext="">
<WordsStyle name="DEFAULT" styleID="7" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="7" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="008000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="COMMENT" styleID="1" fgColor="008000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />

View File

@ -1006,6 +1006,23 @@ Installation:
<WordsStyle name="COMMAND" styleID="4" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="">if else for while</WordsStyle> <WordsStyle name="COMMAND" styleID="4" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="">if else for while</WordsStyle>
<WordsStyle name="TEXT" styleID="5" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="">bool long int char</WordsStyle> <WordsStyle name="TEXT" styleID="5" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="">bool long int char</WordsStyle>
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="2B0F01" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="2B0F01" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="2B0F01" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="2B0F01" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="2B0F01" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="2B0F01" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="2B0F01" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="2B0F01" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="2B0F01" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="2B0F01" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="vb" desc="VB / VBS" ext=""> <LexerType name="vb" desc="VB / VBS" ext="">
<WordsStyle name="DEFAULT" styleID="7" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="7" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" /> <WordsStyle name="COMMENT" styleID="1" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />

View File

@ -590,6 +590,23 @@ Credits:
<WordsStyle name="COMMAND" styleID="4" fgColor="C87500" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="COMMAND" styleID="4" fgColor="C87500" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="TEXT" styleID="5" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="TEXT" styleID="5" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="222C28" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="222C28" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="222C28" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="222C28" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="222C28" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="222C28" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="222C28" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="222C28" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="222C28" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="222C28" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="222C28" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="222C28" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="222C28" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="222C28" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="222C28" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="nsis" desc="NSIS" ext=""> <LexerType name="nsis" desc="NSIS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="1" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="COMMENTLINE" styleID="1" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />

View File

@ -590,6 +590,23 @@ Credits:
<WordsStyle name="COMMAND" styleID="4" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" /> <WordsStyle name="COMMAND" styleID="4" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="TEXT" styleID="5" fgColor="E6DB74" bgColor="272822" fontName="" fontStyle="" fontSize="10" /> <WordsStyle name="TEXT" styleID="5" fgColor="E6DB74" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="272822" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="272822" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="272822" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="272822" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="272822" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="272822" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="272822" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="272822" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="272822" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="272822" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="272822" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="272822" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="272822" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="272822" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="272822" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="nsis" desc="NSIS" ext=""> <LexerType name="nsis" desc="NSIS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" /> <WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="1" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" /> <WordsStyle name="COMMENTLINE" styleID="1" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />

View File

@ -1006,6 +1006,23 @@ Installation:
<WordsStyle name="COMMAND" styleID="4" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="COMMAND" styleID="4" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TEXT" styleID="5" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="TEXT" styleID="5" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="58693D" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="58693D" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="58693D" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="58693D" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="58693D" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="58693D" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="58693D" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="58693D" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="58693D" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="58693D" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="vb" desc="VB / VBS" ext=""> <LexerType name="vb" desc="VB / VBS" ext="">
<WordsStyle name="DEFAULT" styleID="7" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="7" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="2" fontSize="" /> <WordsStyle name="COMMENT" styleID="1" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />

View File

@ -1003,6 +1003,23 @@ Installation:
<WordsStyle name="COMMAND" styleID="4" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="COMMAND" styleID="4" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TEXT" styleID="5" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="TEXT" styleID="5" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="008000" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="8000FF" bgColor="BA9C80" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="408080" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="804000" bgColor="BA9C80" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="0000FF" bgColor="BA9C80" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FFFF80" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="808000" bgColor="BA9C80" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="4D4D4D" bgColor="BA9C80" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="4D4D4D" bgColor="BA9C80" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="4D4D4D" bgColor="BA9C80" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="4D4D4D" bgColor="BA9C80" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="0000FF" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="0000A0" bgColor="BA9C80" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="vb" desc="VB / VBS" ext=""> <LexerType name="vb" desc="VB / VBS" ext="">
<WordsStyle name="DEFAULT" styleID="7" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="7" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" /> <WordsStyle name="COMMENT" styleID="1" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />

View File

@ -856,6 +856,23 @@ Notepad++ Custom Style
<WordsStyle name="COMMAND" styleID="4" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" /> <WordsStyle name="COMMAND" styleID="4" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TEXT" styleID="5" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="TEXT" styleID="5" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="293134" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="293134" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="vb" desc="VB / VBS" ext=""> <LexerType name="vb" desc="VB / VBS" ext="">
<WordsStyle name="DEFAULT" styleID="7" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="7" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="66747B" bgColor="293134" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="COMMENT" styleID="1" fgColor="66747B" bgColor="293134" fontName="" fontStyle="0" fontSize="" />

View File

@ -602,6 +602,23 @@ Credits:
<WordsStyle name="COMMAND" styleID="4" fgColor="EB939A" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="COMMAND" styleID="4" fgColor="EB939A" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="TEXT" styleID="5" fgColor="55E439" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="TEXT" styleID="5" fgColor="55E439" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="0B161D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="0B161D" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="0B161D" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="0B161D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="0B161D" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="0B161D" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="0B161D" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="0B161D" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="0B161D" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="0B161D" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="0B161D" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="0B161D" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="0B161D" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="nsis" desc="NSIS" ext=""> <LexerType name="nsis" desc="NSIS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="1" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="COMMENTLINE" styleID="1" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />

View File

@ -585,6 +585,23 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMAND" styleID="4" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="COMMAND" styleID="4" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TEXT" styleID="5" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="TEXT" styleID="5" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="112435" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="112435" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="112435" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="112435" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="112435" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="112435" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="112435" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="112435" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="112435" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="112435" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="112435" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="nsis" desc="NSIS" ext=""> <LexerType name="nsis" desc="NSIS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="COMMENT" styleID="1" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />

View File

@ -1014,6 +1014,23 @@ Installation:
<WordsStyle name="COMMAND" styleID="4" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="COMMAND" styleID="4" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TEXT" styleID="5" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="TEXT" styleID="5" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="008000" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="000000" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="8000FF" bgColor="FDF6E3" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF0000" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="804000" bgColor="FDF6E3" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="0000FF" bgColor="FDF6E3" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FFFF80" bgColor="FF0000" fontName="" fontStyle="0" fontSize="" colorStyle="3" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="808000" bgColor="FDF6E3" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="808080" bgColor="FDF6E3" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="808080" bgColor="FDF6E3" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="808080" bgColor="FDF6E3" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="808080" bgColor="FDF6E3" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="8080FF" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="FF8040" bgColor="FDF6E3" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="vb" desc="VB / VBS" ext=""> <LexerType name="vb" desc="VB / VBS" ext="">
<WordsStyle name="DEFAULT" styleID="7" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="7" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" /> <WordsStyle name="COMMENT" styleID="1" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />

View File

@ -1376,6 +1376,23 @@ Installation:
<WordsStyle name="COMMAND" styleID="4" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="COMMAND" styleID="4" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TEXT" styleID="5" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="TEXT" styleID="5" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="002B36" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="002B36" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="002B36" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="002B36" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="002B36" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="002B36" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="002B36" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="002B36" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="002B36" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="002B36" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="txt2tags" desc="txt2tags" ext=""> <LexerType name="txt2tags" desc="txt2tags" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="0" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="SPECIAL" styleID="1" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="SPECIAL" styleID="1" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />

View File

@ -591,6 +591,23 @@ Credits:
<WordsStyle name="COMMAND" styleID="4" fgColor="CF6A4C" bgColor="141414" fontName="" fontStyle="0" fontSize="10"/> <WordsStyle name="COMMAND" styleID="4" fgColor="CF6A4C" bgColor="141414" fontName="" fontStyle="0" fontSize="10"/>
<WordsStyle name="TEXT" styleID="5" fgColor="8F9D6A" bgColor="141414" fontName="" fontStyle="0" fontSize="10"/> <WordsStyle name="TEXT" styleID="5" fgColor="8F9D6A" bgColor="141414" fontName="" fontStyle="0" fontSize="10"/>
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="141414" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="141414" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="141414" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="141414" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="141414" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="141414" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="141414" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="141414" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="141414" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="141414" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="141414" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="141414" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="141414" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="141414" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="141414" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="nsis" desc="NSIS" ext=""> <LexerType name="nsis" desc="NSIS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="1" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" /> <WordsStyle name="COMMENTLINE" styleID="1" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />

View File

@ -566,6 +566,23 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMAND" styleID="4" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="8" /> <WordsStyle name="COMMAND" styleID="4" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="8" />
<WordsStyle name="TEXT" styleID="5" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="4" fontSize="" /> <WordsStyle name="TEXT" styleID="5" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="4" fontSize="" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="000000" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="nsis" desc="NSIS" ext=""> <LexerType name="nsis" desc="NSIS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" /> <WordsStyle name="COMMENT" styleID="1" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />

View File

@ -1487,6 +1487,23 @@ License: GPL2
<WordsStyle name="COMMAND" styleID="4" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" /> <WordsStyle name="COMMAND" styleID="4" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TEXT" styleID="5" fgColor="CC9393" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="TEXT" styleID="5" fgColor="CC9393" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="3F3F3F" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="txt2tags" desc="txt2tags" ext=""> <LexerType name="txt2tags" desc="txt2tags" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="SPECIAL" styleID="1" fgColor="DCDCDC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="SPECIAL" styleID="1" fgColor="DCDCDC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />

View File

@ -1003,6 +1003,23 @@ Installation:
<WordsStyle name="COMMAND" styleID="4" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="COMMAND" styleID="4" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TEXT" styleID="5" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="TEXT" styleID="5" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="008000" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="000000" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="8000FF" bgColor="d7d7af" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF0000" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="804000" bgColor="d7d7af" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="0000FF" bgColor="d7d7af" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FFFF80" bgColor="FF0000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="808000" bgColor="d7d7af" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="808080" bgColor="d7d7af" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="808080" bgColor="d7d7af" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="808080" bgColor="d7d7af" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="808080" bgColor="d7d7af" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="8080FF" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="FF8040" bgColor="d7d7af" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="vb" desc="VB / VBS" ext=""> <LexerType name="vb" desc="VB / VBS" ext="">
<WordsStyle name="DEFAULT" styleID="7" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="7" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" /> <WordsStyle name="COMMENT" styleID="1" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />

View File

@ -832,6 +832,23 @@
<WordsStyle name="COMMAND" styleID="4" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" /> <WordsStyle name="COMMAND" styleID="4" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TEXT" styleID="5" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="TEXT" styleID="5" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="69B45C" bgColor="000040" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="C0C0C0" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="B76FFF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8000" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="FED750" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="8CC6FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FF0000" bgColor="000040" fontName="" fontStyle="4" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="C0C0C0" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="CE9B9B" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="CE9B9B" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="CE9B9B" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="CE9B9B" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="00FF00" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="A0FAC7" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="vb" desc="VB / VBS" ext=""> <LexerType name="vb" desc="VB / VBS" ext="">
<WordsStyle name="DEFAULT" styleID="7" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="7" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="COMMENT" styleID="1" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />

View File

@ -39,7 +39,7 @@ enum LangType {L_TEXT, L_PHP , L_C, L_CPP, L_CS, L_OBJC, L_JAVA, L_RC,\
L_MMIXAL, L_NIM, L_NNCRONTAB, L_OSCRIPT, L_REBOL, \ L_MMIXAL, L_NIM, L_NNCRONTAB, L_OSCRIPT, L_REBOL, \
L_REGISTRY, L_RUST, L_SPICE, L_TXT2TAGS, L_VISUALPROLOG,\ L_REGISTRY, L_RUST, L_SPICE, L_TXT2TAGS, L_VISUALPROLOG,\
L_TYPESCRIPT, L_JSON5, L_MSSQL, L_GDSCRIPT, L_HOLLYWOOD,\ L_TYPESCRIPT, L_JSON5, L_MSSQL, L_GDSCRIPT, L_HOLLYWOOD,\
L_GOLANG, L_RAKU,\ L_GOLANG, L_RAKU, L_TOML,\
// Don't use L_JS, use L_JAVASCRIPT instead // Don't use L_JS, use L_JAVASCRIPT instead
// The end of enumated language type, so it should be always at the end // The end of enumated language type, so it should be always at the end
L_EXTERNAL}; L_EXTERNAL};

View File

@ -4058,6 +4058,8 @@ LangType Notepad_plus::menuID2LangType(int cmdID)
return L_GOLANG; return L_GOLANG;
case IDM_LANG_RAKU: case IDM_LANG_RAKU:
return L_RAKU; return L_RAKU;
case IDM_LANG_TOML:
return L_TOML;
case IDM_LANG_USER: case IDM_LANG_USER:
return L_USER; return L_USER;
default: default:

View File

@ -1041,6 +1041,7 @@ BEGIN
MENUITEM "TCL", IDM_LANG_TCL MENUITEM "TCL", IDM_LANG_TCL
MENUITEM "Tektronix extended HEX", IDM_LANG_TEHEX MENUITEM "Tektronix extended HEX", IDM_LANG_TEHEX
MENUITEM "TeX", IDM_LANG_TEX MENUITEM "TeX", IDM_LANG_TEX
MENUITEM "TOML", IDM_LANG_TOML
MENUITEM "txt2tags", IDM_LANG_TXT2TAGS MENUITEM "txt2tags", IDM_LANG_TXT2TAGS
MENUITEM "TypeScript", IDM_LANG_TYPESCRIPT MENUITEM "TypeScript", IDM_LANG_TYPESCRIPT
MENUITEM "Verilog", IDM_LANG_VERILOG MENUITEM "Verilog", IDM_LANG_VERILOG
@ -1193,6 +1194,7 @@ BEGIN
MENUITEM "TCL", IDM_LANG_TCL MENUITEM "TCL", IDM_LANG_TCL
MENUITEM "Tektronix extended HEX",IDM_LANG_TEHEX MENUITEM "Tektronix extended HEX",IDM_LANG_TEHEX
MENUITEM "TeX", IDM_LANG_TEX MENUITEM "TeX", IDM_LANG_TEX
MENUITEM "TOML", IDM_LANG_TOML
MENUITEM "txt2tags", IDM_LANG_TXT2TAGS MENUITEM "txt2tags", IDM_LANG_TXT2TAGS
MENUITEM "TypeScript", IDM_LANG_TYPESCRIPT MENUITEM "TypeScript", IDM_LANG_TYPESCRIPT
END END

View File

@ -3845,6 +3845,7 @@ void Notepad_plus::command(int id)
case IDM_LANG_HOLLYWOOD: case IDM_LANG_HOLLYWOOD:
case IDM_LANG_GOLANG: case IDM_LANG_GOLANG:
case IDM_LANG_RAKU: case IDM_LANG_RAKU:
case IDM_LANG_TOML:
case IDM_LANG_USER : case IDM_LANG_USER :
{ {
setLanguage(menuID2LangType(id)); setLanguage(menuID2LangType(id));

View File

@ -8267,6 +8267,9 @@ int NppParameters::langTypeToCommandID(LangType lt) const
case L_RAKU: case L_RAKU:
id = IDM_LANG_RAKU; break; id = IDM_LANG_RAKU; break;
case L_TOML:
id = IDM_LANG_TOML; break;
case L_SEARCHRESULT : case L_SEARCHRESULT :
id = -1; break; id = -1; break;

View File

@ -161,6 +161,7 @@ LanguageNameInfo ScintillaEditView::_langNameInfoArray[L_EXTERNAL + 1] = {
{L"hollywood", L"Hollywood", L"Hollywood script", L_HOLLYWOOD, "hollywood"}, {L"hollywood", L"Hollywood", L"Hollywood script", L_HOLLYWOOD, "hollywood"},
{L"go", L"Go", L"Go source file", L_GOLANG, "cpp"}, {L"go", L"Go", L"Go source file", L_GOLANG, "cpp"},
{L"raku", L"Raku", L"Raku source file", L_RAKU, "raku"}, {L"raku", L"Raku", L"Raku source file", L_RAKU, "raku"},
{L"toml", L"TOML", L"Tom's Obvious Minimal Language file", L_TOML, "toml"},
{L"ext", L"External", L"External", L_EXTERNAL, "null"} {L"ext", L"External", L"External", L_EXTERNAL, "null"}
}; };
@ -2063,6 +2064,9 @@ void ScintillaEditView::defineDocType(LangType typeDoc)
case L_RAKU: case L_RAKU:
setRakuLexer(); break; setRakuLexer(); break;
case L_TOML:
setTomlLexer(); break;
case L_TEXT : case L_TEXT :
default : default :
if (typeDoc >= L_EXTERNAL && typeDoc < NppParameters::getInstance().L_END) if (typeDoc >= L_EXTERNAL && typeDoc < NppParameters::getInstance().L_END)

View File

@ -1252,6 +1252,10 @@ protected:
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("fold.raku.comment.pod"), reinterpret_cast<LPARAM>("1")); execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("fold.raku.comment.pod"), reinterpret_cast<LPARAM>("1"));
}; };
void setTomlLexer(){
setLexer(L_TOML, LIST_0);
};
//-------------------- //--------------------
void setSearchResultLexer() { void setSearchResultLexer() {

View File

@ -565,6 +565,9 @@
</Language> </Language>
<Language name="tehex" ext="tek" /> <Language name="tehex" ext="tek" />
<Language name="tex" ext="tex" commentLine="%"/> <Language name="tex" ext="tex" commentLine="%"/>
<Language name="toml" ext="toml" commentLine="#">
<Keywords name="instre1">false inf nan true</Keywords>
</Language>
<Language name="vb" ext="vb vba vbs" commentLine="&apos;" commentStart="" commentEnd=""> <Language name="vb" ext="vb vba vbs" commentLine="&apos;" commentStart="" commentEnd="">
<Keywords name="instre1">addhandler addressof aggregate alias and andalso ansi as assembly async attribute auto await begin binary boolean by byref byte byval call case catch cbool cbyte cchar ccur cdate cdbl cdec char cint class clng clnglng clngptr cobj compare const continue csbyte cshort csng cstr ctype cuint culng currency cushort custom cvar date decimal declare default defbool defbyte defcur defdate defdbl defdec defint deflng deflnglng deflngptr defobj defsng defstr defvar delegate dim directcast distinct do double each else elseif end endif enum equals erase error event exit explicit false finally for friend from function get gettype global gosub goto group handles if implement implements imports in inherits integer interface into is isfalse isnot istrue iterator join key let lib like load long longlong longptr loop lset me mid mod module mustinherit mustoverride mybase myclass namespace narrowing new next not nothing notinheritable notoverridable object of off on operator option optional or order orelse out overloads overridable overrides paramarray partial preserve private property protected ptrsafe public raiseevent readonly redim rem removehandler resume return rset sbyte select set shadows shared short single skip static step stop strict string structure sub synclock take text then throw to true try trycast type typeof uinteger ulong unicode unload until ushort using variant vbarray vbboolean vbbyte vbcurrency vbdataobject vbdate vbdecimal vbdouble vbempty vberror vbinteger vblong vblonglong vbnull vbobject vbsingle vbuserdefinedtype vbvariant wend when where while widening with withevents writeonly xor yield</Keywords> <Keywords name="instre1">addhandler addressof aggregate alias and andalso ansi as assembly async attribute auto await begin binary boolean by byref byte byval call case catch cbool cbyte cchar ccur cdate cdbl cdec char cint class clng clnglng clngptr cobj compare const continue csbyte cshort csng cstr ctype cuint culng currency cushort custom cvar date decimal declare default defbool defbyte defcur defdate defdbl defdec defint deflng deflnglng deflngptr defobj defsng defstr defvar delegate dim directcast distinct do double each else elseif end endif enum equals erase error event exit explicit false finally for friend from function get gettype global gosub goto group handles if implement implements imports in inherits integer interface into is isfalse isnot istrue iterator join key let lib like load long longlong longptr loop lset me mid mod module mustinherit mustoverride mybase myclass namespace narrowing new next not nothing notinheritable notoverridable object of off on operator option optional or order orelse out overloads overridable overrides paramarray partial preserve private property protected ptrsafe public raiseevent readonly redim rem removehandler resume return rset sbyte select set shadows shared short single skip static step stop strict string structure sub synclock take text then throw to true try trycast type typeof uinteger ulong unicode unload until ushort using variant vbarray vbboolean vbbyte vbcurrency vbdataobject vbdate vbdecimal vbdouble vbempty vberror vbinteger vblong vblonglong vbnull vbobject vbsingle vbuserdefinedtype vbvariant wend when where while widening with withevents writeonly xor yield</Keywords>
</Language> </Language>

View File

@ -561,6 +561,7 @@
#define IDM_LANG_HOLLYWOOD (IDM_LANG + 88) #define IDM_LANG_HOLLYWOOD (IDM_LANG + 88)
#define IDM_LANG_GOLANG (IDM_LANG + 89) #define IDM_LANG_GOLANG (IDM_LANG + 89)
#define IDM_LANG_RAKU (IDM_LANG + 90) #define IDM_LANG_RAKU (IDM_LANG + 90)
#define IDM_LANG_TOML (IDM_LANG + 91)
#define IDM_LANG_EXTERNAL (IDM_LANG + 165) #define IDM_LANG_EXTERNAL (IDM_LANG + 165)
#define IDM_LANG_EXTERNAL_LIMIT (IDM_LANG + 179) #define IDM_LANG_EXTERNAL_LIMIT (IDM_LANG + 179)

View File

@ -542,6 +542,33 @@
<WordsStyle name="HEXNUMBER" styleID="17" fgColor="007F7F" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="HEXNUMBER" styleID="17" fgColor="007F7F" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="BINNUMBER" styleID="18" fgColor="007F7F" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="BINNUMBER" styleID="18" fgColor="007F7F" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
</LexerType> </LexerType>
<LexerType name="gdscript" desc="GDScript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT LINE" styleID="1" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="2" fgColor="FF0000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="STRING" styleID="3" fgColor="008040" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CHARACTER" styleID="4" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="5" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="TRIPLE" styleID="6" fgColor="FF8000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TRIPLE DOUBLE" styleID="7" fgColor="FF8000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CLASS NAME" styleID="8" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="FUNC NAME" styleID="9" fgColor="0080FF" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="OPERATOR" styleID="10" fgColor="000080" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="11" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT BLOCK" styleID="12" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="STRING EOL" styleID="13" fgColor="880088" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="WORD2" styleID="14" fgColor="FF8000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
<WordsStyle name="ANNOTATION" styleID="15" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NODEPATH" styleID="16" fgColor="004000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="go" desc="Go" ext=""> <LexerType name="go" desc="Go" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="804000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="PREPROCESSOR" styleID="9" fgColor="804000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DEFAULT" styleID="11" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="11" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -1495,6 +1522,23 @@
<WordsStyle name="COMMAND" styleID="4" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" /> <WordsStyle name="COMMAND" styleID="4" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TEXT" styleID="5" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="TEXT" styleID="5" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
</LexerType> </LexerType>
<LexerType name="toml" desc="TOML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="KEYWORD" styleID="3" fgColor="8000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="4" fgColor="FF0000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TABLE" styleID="5" fgColor="804000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEY" styleID="6" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ERROR" styleID="7" fgColor="FFFF80" bgColor="FF0000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="OPERATOR" styleID="8" fgColor="808000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING SQ" styleID="9" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING DQ" styleID="10" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING SQ" styleID="11" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="TRIPLE STRING DQ" styleID="12" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ESCAPE CHAR" styleID="13" fgColor="8080FF" bgColor="F8FEDE" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DATETIME" styleID="14" fgColor="FF8040" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
</LexerType>
<LexerType name="txt2tags" desc="txt2tags" ext=""> <LexerType name="txt2tags" desc="txt2tags" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="SPECIAL" styleID="1" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="SPECIAL" styleID="1" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -1550,33 +1594,6 @@
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" /> <WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" /> <WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType> </LexerType>
<LexerType name="gdscript" desc="GDScript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT LINE" styleID="1" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="2" fgColor="FF0000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="STRING" styleID="3" fgColor="008040" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CHARACTER" styleID="4" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="5" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="TRIPLE" styleID="6" fgColor="FF8000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="TRIPLE DOUBLE" styleID="7" fgColor="FF8000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CLASS NAME" styleID="8" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="FUNC NAME" styleID="9" fgColor="0080FF" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="OPERATOR" styleID="10" fgColor="000080" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="IDENTIFIER" styleID="11" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT BLOCK" styleID="12" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="STRING EOL" styleID="13" fgColor="880088" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="WORD2" styleID="14" fgColor="FF8000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
<WordsStyle name="ANNOTATION" styleID="15" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NODEPATH" styleID="16" fgColor="004000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="vb" desc="VB / VBS" ext=""> <LexerType name="vb" desc="VB / VBS" ext="">
<WordsStyle name="DEFAULT" styleID="7" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="DEFAULT" styleID="7" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="1" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /> <WordsStyle name="COMMENT" styleID="1" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />