2014-01-20 12:44:44 +08:00
|
|
|
" MIT License. Copyright (c) 2013-2014 Bailey Ling.
|
2013-08-21 23:14:12 +08:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-03 01:56:12 +08:00
|
|
|
|
2013-09-10 23:37:25 +08:00
|
|
|
if !get(g:, 'command_t_loaded', 0)
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2013-08-21 23:14:12 +08:00
|
|
|
function! airline#extensions#commandt#apply(...)
|
2013-07-26 05:54:49 +08:00
|
|
|
if bufname('%') ==# 'GoToFile'
|
|
|
|
call airline#extensions#apply_left_override('CommandT', '')
|
|
|
|
endif
|
|
|
|
endfunction
|
2013-08-06 10:56:30 +08:00
|
|
|
|
|
|
|
function! airline#extensions#commandt#init(ext)
|
2013-08-24 05:22:20 +08:00
|
|
|
call a:ext.add_statusline_func('airline#extensions#commandt#apply')
|
2013-08-06 10:56:30 +08:00
|
|
|
endfunction
|