mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-24 20:30:28 +08:00
13 lines
387 B
VimL
13 lines
387 B
VimL
" MIT license. Copyright (c) 2013 Bailey Ling.
|
|
" vim: ts=2 sts=2 sw=2 fdm=indent
|
|
|
|
function! airline#extensions#commandt#apply()
|
|
if bufname('%') ==# 'GoToFile'
|
|
call airline#extensions#apply_left_override('CommandT', '')
|
|
endif
|
|
endfunction
|
|
|
|
function! airline#extensions#commandt#init(ext)
|
|
call ext.add_statusline_funcref(function('airline#extensions#commandt#apply'))
|
|
endfunction
|