From 70b691efe10000f6388df5b503bdce849978e510 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Mon, 21 Oct 2019 19:53:56 +0300 Subject: [PATCH] Fix syntax bug introduced in merged PR #476 and emergency backtrack --- autoload/tagbar.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index 02c6d15..bb7613b 100644 --- a/autoload/tagbar.vim +++ b/autoload/tagbar.vim @@ -1096,9 +1096,9 @@ function! s:ExecuteCtagsOnFile(fname, realfname, typeinfo) abort let ctags_args = [] if exists('g:tagbar_ctags_options') for value in g:tagbar_ctags_options - call add(ctags_args, '--options='.value) + " call add(ctags_args, '--options='.value) endfor - fi + endif let ctags_args = ctags_args + [ \ '-f', \ '-',