Tagbar: additional config

* Additional detection for makefiles
* Open automatically in some cases
This commit is contained in:
Emmanuel BENOîT 2015-03-09 09:21:31 +01:00
parent 91771083b5
commit f562aae441

View file

@ -1 +1,11 @@
" Extra syntax
" Make
let g:tagbar_type_make = {
\ 'kinds':[
\ 'm:macros',
\ 't:targets'
\ ]
\ }
nnoremap <silent> <Leader>t :Tagbar<CR> nnoremap <silent> <Leader>t :Tagbar<CR>
autocmd VimEnter * if argc() > 0 && &columns > 150 | execute "Tagbar" | endif