1
0
mirror of https://github.com/gryf/tagbar.git synced 2025-12-18 12:00:23 +01:00

Change mentions of GNU ctags to BSD ctags

This commit is contained in:
Jan Larres
2015-06-19 11:08:47 +12:00
parent 91566e6c0b
commit 7b36c46d17
2 changed files with 3 additions and 3 deletions

View File

@@ -1028,7 +1028,7 @@ function! s:CreateAutocommands() abort
endfunction
" s:CheckForExCtags() {{{2
" Test whether the ctags binary is actually Exuberant Ctags and not GNU ctags
" Test whether the ctags binary is actually Exuberant Ctags and not BSD ctags
" (or something else)
function! s:CheckForExCtags(silent) abort
call s:debug('Checking for Exuberant Ctags')
@@ -1088,7 +1088,7 @@ function! s:CheckForExCtags(silent) abort
if v:shell_error || ctags_output !~# '\(Exuberant\|Universal\) Ctags'
let errmsg = 'Tagbar: Ctags doesn''t seem to be Exuberant Ctags!'
let infomsg = 'GNU ctags will NOT WORK.' .
let infomsg = 'BSD ctags will NOT WORK.' .
\ ' Please download Exuberant Ctags from ctags.sourceforge.net' .
\ ' and install it in a directory in your $PATH' .
\ ' or set g:tagbar_ctags_bin.'