diff options
author | 2010-11-23 19:09:21 -0500 | |
---|---|---|
committer | 2010-11-23 19:09:21 -0500 | |
commit | 5f29cb8190dbee6bb10b4eb904c8c39750de352d (patch) | |
tree | ef9d178b4834087d829702d4894ec3b9330f3c0b /themes/scite/view.lua | |
parent | 1f3bbef0357b89f82a65d1e67caa1980eee3f40b (diff) | |
download | textadept-5f29cb8190dbee6bb10b4eb904c8c39750de352d.tar.gz textadept-5f29cb8190dbee6bb10b4eb904c8c39750de352d.zip |
Code cleanup.
Also modified the editing module's enclose() and select_enclosed() functions.
Diffstat (limited to 'themes/scite/view.lua')
-rw-r--r-- | themes/scite/view.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/scite/view.lua b/themes/scite/view.lua index d612377d..71b4be2f 100644 --- a/themes/scite/view.lua +++ b/themes/scite/view.lua @@ -8,13 +8,13 @@ buffer.margin_width_n[0] = 4 * buffer:text_width(c.STYLE_LINENUMBER, "9") buffer.caret_period = 500 --- fold margin +-- Fold margin. buffer.margin_type_n[2] = c.SC_MARGIN_SYMBOL buffer.margin_width_n[2] = 16 buffer.margin_mask_n[2] = c.SC_MASK_FOLDERS buffer.margin_sensitive_n[2] = true --- fold margin markers +-- Fold margin markers. buffer:marker_define(c.SC_MARKNUM_FOLDEROPEN, c.SC_MARK_MINUS) buffer:marker_set_fore(c.SC_MARKNUM_FOLDEROPEN, 16777215) buffer:marker_set_back(c.SC_MARKNUM_FOLDEROPEN, 0) |