heavim/bundles-init/tagbar.cfg.vim

12 lines
222 B
VimL
Raw Normal View History

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