vim-airline/autoload/airline/extensions/tabline/builder.vim

13 lines
308 B
VimL
Raw Normal View History

2018-03-14 21:23:43 -04:00
" MIT License. Copyright (c) 2013-2018 Bailey Ling et al.
" vim: et ts=2 sts=2 sw=2
scriptencoding utf-8
let s:prototype = {}
function! airline#extensions#tabline#builder#new(context)
let builder = airline#builder#new(a:context)
call extend(builder, s:prototype, 'force')
return builder
endfunction