aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2006-02-13 04:29:30 +0000
committernyamatongwe <unknown>2006-02-13 04:29:30 +0000
commitb65fb78e1be5b212d8dd3a31fc3c7c52d7f5ba49 (patch)
tree2f8add959ae7383eb125fbeb93418fa0d4a46673 /src
parent03641f9b1917ac11fa1b79f883b15abdee2b0c3f (diff)
downloadscintilla-mirror-b65fb78e1be5b212d8dd3a31fc3c7c52d7f5ba49.tar.gz
Patch from Sebastian Pipping allows the key for each property to be styled
differently to the value.
Diffstat (limited to 'src')
-rw-r--r--src/LexOthers.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexOthers.cxx b/src/LexOthers.cxx
index 626a2c18c..5f6e7e404 100644
--- a/src/LexOthers.cxx
+++ b/src/LexOthers.cxx
@@ -602,7 +602,7 @@ static void ColourisePropsLine(
while ((i < lengthLine) && (lineBuffer[i] != '='))
i++;
if ((i < lengthLine) && (lineBuffer[i] == '=')) {
- styler.ColourTo(startLine + i - 1, SCE_PROPS_DEFAULT);
+ styler.ColourTo(startLine + i - 1, SCE_PROPS_KEY);
styler.ColourTo(startLine + i, SCE_PROPS_ASSIGNMENT);
styler.ColourTo(endPos, SCE_PROPS_DEFAULT);
} else {