Added a flag for ignoring spaces

Added flag g:indent_guides_enable_on_vim_startup
Controls whether spaces are considered for indent calculating
This commit is contained in:
Ryan Souza
2011-07-31 18:11:04 -07:00
parent 62a2fd103f
commit 9d189306aa
3 changed files with 12 additions and 1 deletions

View File

@@ -52,6 +52,7 @@ call s:InitVariable('g:indent_guides_guide_size', 0 )
call s:InitVariable('g:indent_guides_start_level', 1 )
call s:InitVariable('g:indent_guides_enable_on_vim_startup', 0 )
call s:InitVariable('g:indent_guides_debug', 0 )
call s:InitVariable('g:indent_guides_space_guides', 1 )
" Default mapping
nmap <Leader>ig :IndentGuidesToggle<CR>