diff options
author | 2016-01-22 18:53:22 -0500 | |
---|---|---|
committer | 2016-01-22 18:53:22 -0500 | |
commit | e307caa847e4dae76211e8a9707530cf52c4cf3d (patch) | |
tree | 6ec0eca663f11c3a606037e0c00062343992d2a1 | |
parent | 002eac4435759d2f01c4299c9513c7261b47961e (diff) | |
download | textadept-e307caa847e4dae76211e8a9707530cf52c4cf3d.tar.gz textadept-e307caa847e4dae76211e8a9707530cf52c4cf3d.zip |
Only enable idle styling in the GUI version; properties.lua
-rw-r--r-- | properties.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/properties.lua b/properties.lua index a490c75b..0e568005 100644 --- a/properties.lua +++ b/properties.lua @@ -34,8 +34,8 @@ buffer.view_ws = buffer.WS_INVISIBLE -- Line Endings buffer.view_eol = false --- Styling. -buffer.idle_styling = buffer.IDLESTYLING_ALL +-- Styling +if not CURSES then buffer.idle_styling = buffer.IDLESTYLING_ALL end -- Caret and Selection Styles. --buffer.sel_eol_filled = true |