diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index c5d9087..a2fcc56 100644 --- a/autoload/tagbar.vim +++ b/autoload/tagbar.vim @@ -111,7 +111,7 @@ endfunction " s:InitTypes() {{{2 function! s:InitTypes() abort - call s:LogDebugMessage('Initializing types') + call s:debug('Initializing types') let s:known_types = {} @@ -815,12 +815,12 @@ function! s:LoadUserTypeDefs(...) abort if a:0 > 0 let type = a:1 - call s:LogDebugMessage("Initializing user type '" . type . "'") + call s:debug("Initializing user type '" . type . "'") let defdict = {} let defdict[type] = g:tagbar_type_{type} else - call s:LogDebugMessage('Initializing user types') + call s:debug('Initializing user types') let defdict = tagbar#getusertypes() endif @@ -880,7 +880,7 @@ endfunction " s:RestoreSession() {{{2 " Properly restore Tagbar after a session got loaded function! s:RestoreSession() abort - call s:LogDebugMessage('Restoring session') + call s:debug('Restoring session') let curfile = fnamemodify(bufname('%'), ':p') @@ -911,7 +911,7 @@ endfunction " s:MapKeys() {{{2 function! s:MapKeys() abort - call s:LogDebugMessage('Mapping keys') + call s:debug('Mapping keys') nnoremap