aboutsummaryrefslogtreecommitdiff
path: root/modules/textadept/run.lua
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2013-09-16 20:49:23 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2013-09-16 20:49:23 -0400
commitdbef5c3fa8ca9f842f75a6db1f0aa0fb029a4be6 (patch)
treec215e7a3ae04be1343820a2577543f8154c28580 /modules/textadept/run.lua
parent9ccea9e562699b45ba830b8b1355571061580386 (diff)
downloadtextadept-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.lua7
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