mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-30 04:33:38 +08:00
36f14c478a
Included `.vue` extension to jsformatter for supporting Vue.js files. Vue files follows the same path resolution as js files: https://vue-loader.vuejs.org/spec.html#src-imports Case sensitive comparison for jsformatter
16 lines
569 B
VimL
16 lines
569 B
VimL
" MIT License. Copyright (c) 2013-2021 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' || filename ==# 'index.vue'
|
|
return fnamemodify(buf, ':p:h:t') . '/i'
|
|
else
|
|
return airline#extensions#tabline#formatters#unique_tail_improved#format(a:bufnr, a:buffers)
|
|
endif
|
|
endfunction
|