From ccf918f23a917cea1bfe479c5f62e0ea93580653 Mon Sep 17 00:00:00 2001 From: yuta takahashi Date: Tue, 23 Jun 2015 13:08:15 +0900 Subject: [PATCH] Update for Ctags 5.8 I get this error : ``` $ ctags -f - --format=2 --excmd=pattern --fields=nks --sort=no --language-force=java --java-types=pcifm "filename.java" ctags: append mode is not compatible with tags to stdout $ ctags --version Exuberant Ctags 5.8, Copyright (C) 1996-2009 Darren Hiebert ``` --- plugin/taglist.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/taglist.vim b/plugin/taglist.vim index 59901f6..1f673dd 100644 --- a/plugin/taglist.vim +++ b/plugin/taglist.vim @@ -2233,7 +2233,7 @@ function! s:Tlist_Process_File(filename, ftype) let s:tlist_{fidx}_valid = 1 " Exuberant ctags arguments to generate a tag list - let ctags_args = ' -f - --format=2 --excmd=pattern --fields=nks ' + let ctags_args = ' -f - --append=no --format=2 --excmd=pattern --fields=nks ' " Form the ctags argument depending on the sort type if s:tlist_{fidx}_sort_type == 'name'