From ace45adc51d0e08d45761bb515a9ff23906cba65 Mon Sep 17 00:00:00 2001 From: Jan Larres Date: Wed, 25 Dec 2013 19:07:31 +1300 Subject: [PATCH] Don't let ctags sort tags, closes #187 Ctags seems to call an external 'sort' which can apparently fail in some cases with Cygwin. Since we sort the tags ourselves anyway just disable it. --- autoload/tagbar.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index 3a78d34..f751d60 100644 --- a/autoload/tagbar.vim +++ b/autoload/tagbar.vim @@ -2125,7 +2125,7 @@ function! s:ExecuteCtagsOnFile(fname, realfname, typeinfo) abort \ '--excmd=pattern', \ '--fields=nksSa', \ '--extra=', - \ '--sort=yes' + \ '--sort=no' \ ] " Include extra type definitions