From 9eb5ff5e1fb003f2b360318d73bbdc7ace7bc659 Mon Sep 17 00:00:00 2001 From: Jan Larres Date: Mon, 28 Feb 2011 18:08:31 +1300 Subject: [PATCH] Fix typo in Ruby definition --- plugin/tagbar.vim | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugin/tagbar.vim b/plugin/tagbar.vim index a5df837..666a2ca 100644 --- a/plugin/tagbar.vim +++ b/plugin/tagbar.vim @@ -536,8 +536,9 @@ function! s:InitTypes() \ 'f:methods', \ 'F:singleton methods' \ ] - let type_ruby.kinds2scope = { - \ 'c' : 'class' + let type_ruby.kind2scope = { + \ 'c' : 'class', + \ 'm' : 'class' \ } let type_ruby.scope2kind = { \ 'class' : 'c'