diff options
Diffstat (limited to 'properties.lua')
-rw-r--r-- | properties.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/properties.lua b/properties.lua index 117ccb8f..4f0ef707 100644 --- a/properties.lua +++ b/properties.lua @@ -123,6 +123,9 @@ end --buffer:marker_enable_highlight(true) -- Indicators. +local INDIC_BRACEMATCH = textadept.editing.INDIC_BRACEMATCH +buffer.indic_style[INDIC_BRACEMATCH] = buffer.INDIC_BOX +buffer:brace_highlight_indicator(not CURSES, INDIC_BRACEMATCH) local INDIC_HIGHLIGHT = textadept.editing.INDIC_HIGHLIGHT buffer.indic_style[INDIC_HIGHLIGHT] = buffer.INDIC_ROUNDBOX if not CURSES then buffer.indic_under[INDIC_HIGHLIGHT] = true end |