Skip to content

Commit

Permalink
Merge branch 'ruchee-master'
Browse files Browse the repository at this point in the history
Closes #283
  • Loading branch information
majutsushi committed Aug 22, 2017
2 parents 83246ed + c2af217 commit 817d8a6
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions autoload/tagbar/types/uctags.vim
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,15 @@ function! tagbar#types#uctags#init(supported_types) abort
\ {'short' : 's', 'long' : 'sections', 'fold' : 0, 'stl' : 1}
\ ]
let types.cobol = type_cobol
" CSS {{{1
let type_css = tagbar#prototypes#typeinfo#new()
let type_css.ctagstype = 'css'
let type_css.kinds = [
\ {'short' : 's', 'long' : 'selector', 'fold' : 0, 'stl' : 0},
\ {'short' : 'i', 'long' : 'identities', 'fold' : 1, 'stl' : 0},
\ {'short' : 'c', 'long' : 'classes', 'fold' : 1, 'stl' : 0}
\ ]
let types.css = type_css
" DOS Batch {{{1
let type_dosbatch = tagbar#prototypes#typeinfo#new()
let type_dosbatch.ctagstype = 'dosbatch'
Expand Down

0 comments on commit 817d8a6

Please sign in to comment.