mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-23 19:32:58 +08:00
16 lines
537 B
VimL
16 lines
537 B
VimL
" MIT License. Copyright (c) 2013-2020 Bailey Ling et al.
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
scriptencoding utf-8
|
|
|
|
function! airline#extensions#tabline#formatters#jsformatter#format(bufnr, buffers)
|
|
let buf = bufname(a:bufnr)
|
|
let filename = fnamemodify(buf, ':t')
|
|
|
|
if filename == 'index.js' || filename == 'index.jsx' || filename == 'index.ts' || filename == 'index.tsx'
|
|
return fnamemodify(buf, ':p:h:t') . '/i'
|
|
else
|
|
return airline#extensions#tabline#formatters#unique_tail_improved#format(a:bufnr, a:buffers)
|
|
endif
|
|
endfunction
|