aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/light.lua
diff options
context:
space:
mode:
Diffstat (limited to 'themes/light.lua')
-rw-r--r--themes/light.lua9
1 files changed, 4 insertions, 5 deletions
diff --git a/themes/light.lua b/themes/light.lua
index 3e06e22d..619ef5cf 100644
--- a/themes/light.lua
+++ b/themes/light.lua
@@ -108,11 +108,10 @@ buffer:set_fold_margin_colour(true, property_int['color.white'])
buffer:set_fold_margin_hi_colour(true, property_int['color.white'])
-- Fold Margin Markers.
-local c = _SCINTILLA.constants
-buffer.marker_fore[c.SC_MARKNUM_FOLDEROPEN] = property_int['color.grey']
-buffer.marker_back[c.SC_MARKNUM_FOLDEROPEN] = property_int['color.grey']
-buffer.marker_fore[c.SC_MARKNUM_FOLDER] = property_int['color.grey']
-buffer.marker_back[c.SC_MARKNUM_FOLDER] = property_int['color.grey']
+buffer.marker_fore[buffer.SC_MARKNUM_FOLDEROPEN] = property_int['color.grey']
+buffer.marker_back[buffer.SC_MARKNUM_FOLDEROPEN] = property_int['color.grey']
+buffer.marker_fore[buffer.SC_MARKNUM_FOLDER] = property_int['color.grey']
+buffer.marker_back[buffer.SC_MARKNUM_FOLDER] = property_int['color.grey']
-- Long Lines.
buffer.edge_colour = property_int['color.grey']