Merge pull request #3575 from RaiKoHoff/Dev_DM_STD

Add Configuration (Properties) Lexer: add style setting for Key
This commit is contained in:
Rainer Kottenhoff 2021-08-16 22:40:01 +02:00 committed by GitHub
commit 44bdf6eabe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -167,6 +167,7 @@ Operator=fore:#F651F6
Number=fore:#F20C0D
Regex=fore:#81F8B5; back:#544604
[Configuration Files]
Key=fore:#AADAFA
Comment=fore:#76F873
Section=bold; fore:#DEDEDE; back:#B8430A; eolfilled
Assignment=fore:#F20C0D

View File

@ -11,6 +11,7 @@ EDITLEXER lexPROPS =
&KeyWords_PROPS, {
{ {STYLE_DEFAULT}, IDS_LEX_STR_63126, L"Default", L"", L"" },
//{ {SCE_PROPS_DEFAULT}, IDS_LEX_STR_63126, L"Default", L"", L"" },
{ {SCE_PROPS_KEY}, IDS_LEX_STR_63348, L"Key", L"fore:#00006D", L"" },
{ {SCE_PROPS_COMMENT}, IDS_LEX_STR_63127, L"Comment", L"fore:#008000", L"" },
{ {SCE_PROPS_SECTION}, IDS_LEX_STR_63232, L"Section", L"bold; fore:#000000; back:#FF8040; eolfilled", L"" },
{ {SCE_PROPS_ASSIGNMENT}, IDS_LEX_STR_63233, L"Assignment", L"fore:#FF0000", L"" },