2013-08-21 11:14:12 -04:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-02 13:56:12 -04:00
|
|
|
|
2013-08-21 11:14:12 -04:00
|
|
|
function! airline#extensions#commandt#apply(...)
|
2013-07-25 17:54:49 -04:00
|
|
|
if bufname('%') ==# 'GoToFile'
|
|
|
|
call airline#extensions#apply_left_override('CommandT', '')
|
|
|
|
endif
|
|
|
|
endfunction
|
2013-08-05 22:56:30 -04:00
|
|
|
|
|
|
|
function! airline#extensions#commandt#init(ext)
|
2013-08-23 17:22:20 -04:00
|
|
|
call a:ext.add_statusline_func('airline#extensions#commandt#apply')
|
2013-08-05 22:56:30 -04:00
|
|
|
endfunction
|