1
0
mirror of https://github.com/gryf/tagbar.git synced 2025-12-17 11:30:28 +01:00

Rename types autoload directory

This commit is contained in:
Jan Larres
2017-08-20 17:11:37 +12:00
parent 877a4a939c
commit f20edb5a56
3 changed files with 4 additions and 4 deletions

View File

@@ -117,9 +117,9 @@ function! s:InitTypes() abort
let supported_types = s:GetSupportedFiletypes()
if s:ctags_is_uctags
let s:known_types = tagbar#typedefs#uctags#init(supported_types)
let s:known_types = tagbar#types#uctags#init(supported_types)
else
let s:known_types = tagbar#typedefs#ctags#init(supported_types)
let s:known_types = tagbar#types#ctags#init(supported_types)
endif
" Use jsctags/doctorjs if available

View File

@@ -1,6 +1,6 @@
" Type definitions for standard Exuberant Ctags
function! tagbar#typedefs#ctags#init(supported_types) abort
function! tagbar#types#ctags#init(supported_types) abort
let types = {}
" Ant {{{1

View File

@@ -1,6 +1,6 @@
" Type definitions for Universal Ctags
function! tagbar#typedefs#uctags#init(supported_types) abort
function! tagbar#types#uctags#init(supported_types) abort
let types = {}
" Ant {{{1