Disabling tagbar in older versions of vim

This commit is contained in:
Dustin Swan
2012-01-13 13:25:33 -05:00
parent 6518b56f43
commit 8c04f028b0

5
vimrc
View File

@@ -130,3 +130,8 @@ nnoremap <Esc> :noh<CR><Esc>
" open the current file for edit in Perforce " open the current file for edit in Perforce
nnoremap <leader>p :! p4 edit %<CR> nnoremap <leader>p :! p4 edit %<CR>
" disable tagbar in old Vim
if v:version < 703
let g:loaded_tagbar = 1
endif