2010-12-07 19:41:05 +10:00
|
|
|
" Author: Nate Kane <nathanaelkane AT gmail DOT com>
|
|
|
|
" Homepage: http://github.com/nathanaelkane/vim-indent-guides
|
|
|
|
|
2010-12-20 21:51:02 +10:00
|
|
|
if exists('g:loaded_indent_guides') || &cp
|
2010-12-11 22:59:10 +10:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_indent_guides = 1
|
2010-12-20 22:26:45 +10:00
|
|
|
call indent_guides#define_default_highlights()
|
2010-12-11 22:59:10 +10:00
|
|
|
|
2010-12-07 19:41:05 +10:00
|
|
|
function! s:IndentGuidesToggle()
|
|
|
|
call indent_guides#toggle()
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:IndentGuidesEnable()
|
|
|
|
call indent_guides#enable()
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:IndentGuidesDisable()
|
|
|
|
call indent_guides#disable()
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Commands
|
2011-02-17 15:29:34 -06:00
|
|
|
command! -bar IndentGuidesToggle call s:IndentGuidesToggle()
|
|
|
|
command! -bar IndentGuidesEnable call s:IndentGuidesEnable()
|
|
|
|
command! -bar IndentGuidesDisable call s:IndentGuidesDisable()
|
2010-12-07 19:41:05 +10:00
|
|
|
|
2010-12-09 22:45:09 +10:00
|
|
|
"
|
2011-01-04 23:49:25 +10:00
|
|
|
" Initializes a given variable to a given value. The variable is only
|
|
|
|
" initialized if it does not exist prior.
|
2010-12-09 22:45:09 +10:00
|
|
|
"
|
2011-01-04 23:49:25 +10:00
|
|
|
function s:InitVariable(var, value)
|
|
|
|
if !exists(a:var)
|
2011-02-21 13:23:21 -06:00
|
|
|
if type(a:value) == type("")
|
2011-01-04 23:49:25 +10:00
|
|
|
exec 'let ' . a:var . ' = ' . "'" . a:value . "'"
|
|
|
|
else
|
|
|
|
exec 'let ' . a:var . ' = ' . a:value
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Fixed global variables
|
|
|
|
let g:indent_guides_autocmds_enabled = 0
|
|
|
|
let g:indent_guides_color_hex_pattern = '#[0-9A-Fa-f]\{6\}'
|
|
|
|
let g:indent_guides_color_hex_guibg_pattern = 'guibg=\zs' . g:indent_guides_color_hex_pattern . '\ze'
|
|
|
|
let g:indent_guides_color_name_guibg_pattern = "guibg='\\?\\zs[0-9A-Za-z ]\\+\\ze'\\?"
|
|
|
|
|
|
|
|
" Configurable global variables
|
2011-01-24 20:45:18 +10:00
|
|
|
call s:InitVariable('g:indent_guides_indent_levels', 30)
|
|
|
|
call s:InitVariable('g:indent_guides_auto_colors', 1 )
|
|
|
|
call s:InitVariable('g:indent_guides_color_change_percent', 10) " ie. 10%
|
|
|
|
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 )
|
2011-07-31 18:11:04 -07:00
|
|
|
call s:InitVariable('g:indent_guides_space_guides', 1 )
|
2010-12-09 22:45:09 +10:00
|
|
|
|
2010-12-07 19:41:05 +10:00
|
|
|
" Default mapping
|
2012-05-22 12:49:43 +10:00
|
|
|
if !hasmapto('<Plug>IndentGuidesToggle', 'n') && maparg('<Leader>ig', 'n') == ''
|
2012-05-22 08:52:46 +10:00
|
|
|
nmap <silent><unique> <Leader>ig <Plug>IndentGuidesToggle
|
|
|
|
endif
|
|
|
|
|
|
|
|
" Plug mappings
|
|
|
|
nnoremap <unique><script> <Plug>IndentGuidesToggle :IndentGuidesToggle<CR>
|
|
|
|
nnoremap <unique><script> <Plug>IndentGuidesEnable :IndentGuidesEnable<CR>
|
|
|
|
nnoremap <unique><script> <Plug>IndentGuidesDisable :IndentGuidesDisable<CR>
|
2010-12-07 19:41:05 +10:00
|
|
|
|
2010-12-09 22:45:09 +10:00
|
|
|
" Auto commands
|
|
|
|
augroup indent_guides
|
|
|
|
autocmd!
|
2011-01-24 20:45:18 +10:00
|
|
|
|
|
|
|
if g:indent_guides_enable_on_vim_startup
|
|
|
|
autocmd VimEnter * :IndentGuidesEnable
|
|
|
|
endif
|
|
|
|
|
2010-12-09 22:45:09 +10:00
|
|
|
autocmd BufEnter,WinEnter * call indent_guides#process_autocmds()
|
|
|
|
augroup END
|