1
0
mirror of https://github.com/gryf/tagbar.git synced 2025-12-17 11:30:28 +01:00

Functions create class scope in exctags, ref #397

This commit is contained in:
Jan Larres
2017-02-18 16:43:16 +13:00
parent e089b61e25
commit 959f487981

View File

@@ -636,7 +636,8 @@ function! s:InitTypes() abort
let type_ruby.sro = '.'
let type_ruby.kind2scope = {
\ 'c' : 'class',
\ 'm' : 'class'
\ 'm' : 'class',
\ 'f' : 'class'
\ }
let type_ruby.scope2kind = {
\ 'class' : 'c'