From db1b710289df5b196821415313dc87e93225496b Mon Sep 17 00:00:00 2001 From: chocoladisco Date: Wed, 15 Aug 2018 13:34:35 +0200 Subject: [PATCH] fixed the deprecated --extra to --extras --- autoload/tagbar.vim | 2 +- doc/tagbar.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index 4d5a1f1..7767965 100644 --- a/autoload/tagbar.vim +++ b/autoload/tagbar.vim @@ -1091,7 +1091,7 @@ function! s:ExecuteCtagsOnFile(fname, realfname, typeinfo) abort \ '--format=2', \ '--excmd=pattern', \ '--fields=nksSaf', - \ '--extra=', + \ '--extras=', \ '--file-scope=yes', \ '--sort=no', \ '--append=no' diff --git a/doc/tagbar.txt b/doc/tagbar.txt index 0efcf37..a4eeb46 100644 --- a/doc/tagbar.txt +++ b/doc/tagbar.txt @@ -962,7 +962,7 @@ kind2scope: A dictionary describing the mapping of tag kinds (in their int var; }; < We then run ctags in the following way: > - ctags -f - --format=2 --excmd=pattern --extra= --fields=nksaSmt test.cpp + ctags -f - --format=2 --excmd=pattern --extras= --fields=nksaSmt test.cpp < Then the output for the variable "var" would look like this: > var tmp.cpp /^ int var;$/;" kind:m line:11 class:Foo access:private < This shows that the scope name for an entry in a C++ class is @@ -1266,7 +1266,7 @@ try running ctags manually to see whether ctags reports the wrong information or whether that information is correct and Tagbar does something wrong. To run ctags manually execute the following command in a terminal: > - ctags -f - --format=2 --excmd=pattern --extra= --fields=nksaSmt myfile + ctags -f - --format=2 --excmd=pattern --extras= --fields=nksaSmt myfile < If you set the |g:tagbar_ctags_bin| variable you probably have to use the same value here instead of simply "ctags".