diff options
author | 2013-09-16 20:49:23 -0400 | |
---|---|---|
committer | 2013-09-16 20:49:23 -0400 | |
commit | dbef5c3fa8ca9f842f75a6db1f0aa0fb029a4be6 (patch) | |
tree | c215e7a3ae04be1343820a2577543f8154c28580 /modules/textadept/run.lua | |
parent | 9ccea9e562699b45ba830b8b1355571061580386 (diff) | |
download | textadept-dbef5c3fa8ca9f842f75a6db1f0aa0fb029a4be6.tar.gz textadept-dbef5c3fa8ca9f842f75a6db1f0aa0fb029a4be6.zip |
Moved custom markers and indicators into themes and added more properties.
Diffstat (limited to 'modules/textadept/run.lua')
-rw-r--r-- | modules/textadept/run.lua | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua index 87e292c4..fd3be697 100644 --- a/modules/textadept/run.lua +++ b/modules/textadept/run.lua @@ -241,11 +241,4 @@ events.connect(events.DOUBLE_CLICK, function(pos, line) if is_msg_buf(buffer) then M.goto_error(line) end end) -local CURSES_MARK = buffer.SC_MARK_CHARACTER + string.byte(' ') --- Sets view properties for error markers. -events.connect(events.VIEW_NEW, function() - if CURSES then buffer:marker_define(M.MARK_ERROR, CURSES_MARK) end - buffer.marker_back[M.MARK_ERROR] = not CURSES and 0x8080CC or 0x000080 -end) - return M |