From da87ee943986a3f23800af689f84d9814c042ad1 Mon Sep 17 00:00:00 2001 From: Jan Larres Date: Mon, 21 Aug 2017 09:54:37 +1200 Subject: [PATCH] Add missing ftype field to jsctags type def --- autoload/tagbar.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index 3f6dbc7..7cded0b 100644 --- a/autoload/tagbar.vim +++ b/autoload/tagbar.vim @@ -142,6 +142,7 @@ function! s:InitTypes() abort \ } let type_javascript.ctagsbin = jsctags let type_javascript.ctagsargs = '-f -' + let type_javascript.ftype = 'javascript' call type_javascript.createKinddict() let s:known_types.javascript = type_javascript endif