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/bookmarks.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/bookmarks.lua')
-rw-r--r-- | modules/textadept/bookmarks.lua | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/modules/textadept/bookmarks.lua b/modules/textadept/bookmarks.lua index b6fc39d5..c70983a1 100644 --- a/modules/textadept/bookmarks.lua +++ b/modules/textadept/bookmarks.lua @@ -66,11 +66,4 @@ function M.goto_mark(next) end end -local CURSES_MARK = buffer.SC_MARK_CHARACTER + string.byte(' ') --- Sets view properties for bookmark markers. -events.connect(events.VIEW_NEW, function() - if CURSES then buffer:marker_define(M.MARK_BOOKMARK, CURSES_MARK) end - buffer.marker_back[M.MARK_BOOKMARK] = not CURSES and 0xB3661A or 0x800000 -end) - return M |