Adding end-of-line highlighting as an option

This commit is contained in:
2015-02-17 13:50:00 -07:00
parent 42b9b62842
commit 6cfb029215
3 changed files with 33 additions and 1 deletions

View File

@@ -5,6 +5,9 @@
// Tabs color is determined by scope (default, "invalid")
// "highlight_whitespaces_tab_highlight_scope_name": "Whitespaces.tab.highlight",
// End-of-line color is determined by scope (default, "invalid")
// "highlight_whitespaces_eol_highlight_scope_name": "Whitespaces.eol.highlight",
// Max file size to search
"highlight_whitespaces_file_max_size": 1048576,
@@ -17,6 +20,9 @@
// Whether to check for tabs
"highlight_whitespaces_check_tabs": true,
// Whether to check for end-of-line whitespace
"highlight_whitespaces_check_eol": true,
// Allow the highlighting of the last whitespace, one or more time
"highlight_last_whitespace": true
}