Created
March 14, 2014 09:19
-
-
Save dmacvicar/9544563 to your computer and use it in GitHub Desktop.
TextAdept: Highlight trailing spaces
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- mark trailing spaces | |
function highlight_trailing_spaces() | |
local text = buffer:get_text() | |
-- TODO: only do it in the visible area, I haven't figured out yet | |
--local start_pos = buffer:position_from_line(buffer.first_visible_line) | |
--local end_pos = buffer.line_end_position[buffer.first_visible_line + buffer.lines_on_screen + 1] | |
--local text = buffer:text_range(start_pos, end_pos) | |
local saved_indicator_current = buffer.indicator_current | |
buffer.indicator_current = trailing_ind | |
buffer:indicator_clear_range(0, buffer.length) | |
for s, e in text:gmatch('()[ \t]+()\r?\n') do | |
buffer:indicator_fill_range(s - 1, e - (s - 1)) | |
end | |
buffer.indicator_current = saved_indicator_current | |
end | |
events.connect(events.UPDATE_UI, function() | |
highlight_trailing_spaces() | |
end) | |
events.connect(events.BUFFER_NEW, function() | |
buffer.indic_style[trailing_ind] = buffer.indic_style[textadept.editing.INDIC_HIGHLIGHT] | |
buffer.indic_fore[trailing_ind] = 0x0000FF | |
end) | |
events.connect(events.BUFFER_AFTER_SWITCH, function() | |
highlight_trailing_spaces() | |
end) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment