diff options
author | 2014-11-25 23:12:23 -0500 | |
---|---|---|
committer | 2014-11-25 23:12:23 -0500 | |
commit | 7e882577864f5c1a52265693856f3aedb23fe2f7 (patch) | |
tree | 6792c3d3e5e7805cd64a0a63680fabb73cc0aaca | |
parent | 9593e76b3909ea4a8be1755e4f6fd0b9b8857fed (diff) | |
download | textadept-7e882577864f5c1a52265693856f3aedb23fe2f7.tar.gz textadept-7e882577864f5c1a52265693856f3aedb23fe2f7.zip |
Do not highlight the caret line in the command entry; properties.lua
-rw-r--r-- | properties.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/properties.lua b/properties.lua index 972748bf..5ad9a388 100644 --- a/properties.lua +++ b/properties.lua @@ -35,7 +35,7 @@ buffer:set_y_caret_policy(buffer.CARET_SLOP + buffer.CARET_STRICT + -- Caret and Selection Styles. --buffer.sel_eol_filled = true -buffer.caret_line_visible = not CURSES +buffer.caret_line_visible = not CURSES and buffer ~= ui.command_entry --buffer.caret_line_visible_always = true --buffer.caret_period = 0 --buffer.caret_style = buffer.CARETSTYLE_BLOCK |