added option to disable spaces or tabs

This commit is contained in:
Peter Conerly
2013-07-11 15:05:57 -07:00
committed by Kemal Hadimli
parent 04b88f15bd
commit 87141119fa
2 changed files with 27 additions and 15 deletions

View File

@@ -1,13 +1,19 @@
{
// Spaces color is determined by scope (default, "invalid")
// Spaces color is determined by scope (default, "invalid")
// "highlight_whitespaces_space_highlight_scope_name": "Whitespaces.space.highlight",
// Tabs color is determined by scope (default, "invalid")
// "highlight_whitespaces_tab_highlight_scope_name": "Whitespaces.tab.highlight",
// Tabs color is determined by scope (default, "invalid")
// "highlight_whitespaces_tab_highlight_scope_name": "Whitespaces.tab.highlight",
// Max file size to search
// Max file size to search
"highlight_whitespaces_file_max_size": 1048576,
// By default plugin is enabled or disabled (true|false)
"highlight_whitespaces_enabled": true
// By default plugin is enabled or disabled (true|false)
"highlight_whitespaces_enabled": true,
// Whether to check for spaces
"highlight_whitespaces_check_spaces": true,
// Whether to check for tabs
"highlight_whitespaces_check_tabs": true
}