vue tag file support for tagbar

This commit is contained in:
ManjaroOne666 2018-01-21 22:07:49 +00:00
parent 45f3cf533c
commit 4523aac916
1 changed files with 16 additions and 0 deletions

16
vimrc
View File

@ -361,6 +361,9 @@ nnoremap <leader>p :echom SyntaxItem()<CR>
" plugin stuff
" youcompleteme
let g:ycm_collect_identifiers_from_tags_files = 1
" emmet
let g:user_emmet_leader_key='<c-m>'
@ -477,6 +480,19 @@ let g:tagbar_type_scss = {
\ ]
\}
let g:tagbar_type_vue = {
\ 'ctagstype' : 'vue',
\ 'kinds' : [
\ 'o:objects',
\ 'f:functions',
\ 'a:array',
\ 's:string',
\ 'b:boolean',
\ 'n:number',
\ 'v:variable'
\ ]
\ }
if !exists('*RangerExplorer')
function RangerExplorer()
exec 'silent !ranger --choosefile=/tmp/vim_ranger_current_file ' . expand('%:p:h')