diff options
-rw-r--r-- | properties.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/properties.lua b/properties.lua index 3afef06b..d3362939 100644 --- a/properties.lua +++ b/properties.lua @@ -19,7 +19,8 @@ buffer:set_y_caret_policy(buffer.CARET_SLOP + buffer.CARET_STRICT + buffer.CARET_EVEN, 1) --buffer:set_visible_policy() --buffer.h_scroll_bar = CURSES -buffer.v_scroll_bar = not OSX or not CURSES -- disable on OSX curses +--buffer.v_scroll_bar = false +if CURSES and not (WIN32 or LINUX or BSD) then buffer.v_scroll_bar = false end --buffer.scroll_width = --buffer.scroll_width_tracking = true --buffer.end_at_last_line = false |