From 5bac0d07b0373e79d113772b7e8abd5ca0e6fde9 Mon Sep 17 00:00:00 2001 From: Patrik Sundberg Date: Tue, 7 Aug 2012 12:09:55 +0100 Subject: [PATCH] add support for contexts and describes that now exists in ctags ruby support. --- autoload/tagbar.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index b9948c90..0db545ba 100644 --- a/autoload/tagbar.vim +++ b/autoload/tagbar.vim @@ -540,6 +540,8 @@ function! s:InitTypes() abort let type_ruby.kinds = [ \ {'short' : 'm', 'long' : 'modules', 'fold' : 0, 'stl' : 1}, \ {'short' : 'c', 'long' : 'classes', 'fold' : 0, 'stl' : 1}, + \ {'short' : 'd', 'long' : 'describes', 'fold' : 0, 'stl' : 1}, + \ {'short' : 'C', 'long' : 'contexts', 'fold' : 0, 'stl' : 1}, \ {'short' : 'f', 'long' : 'methods', 'fold' : 0, 'stl' : 1}, \ {'short' : 'F', 'long' : 'singleton methods', 'fold' : 0, 'stl' : 1} \ ]