13 lines
384 B
VimL
13 lines
384 B
VimL
" MIT License. Copyright (c) 2013 Bailey Ling.
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
function! airline#extensions#commandt#apply(...)
|
|
if bufname('%') ==# 'GoToFile'
|
|
call airline#extensions#apply_left_override('CommandT', '')
|
|
endif
|
|
endfunction
|
|
|
|
function! airline#extensions#commandt#init(ext)
|
|
call a:ext.add_statusline_funcref(function('airline#extensions#commandt#apply'))
|
|
endfunction
|