vim-airline/autoload/airline/extensions/commandt.vim

13 lines
389 B
VimL
Raw Normal View History

2013-08-02 17:56:12 +00:00
" MIT license. Copyright (c) 2013 Bailey Ling.
" vim: ts=2 sts=2 sw=2 fdm=indent
2013-08-06 02:56:30 +00:00
function! airline#extensions#commandt#apply()
2013-07-25 21:54:49 +00:00
if bufname('%') ==# 'GoToFile'
call airline#extensions#apply_left_override('CommandT', '')
endif
endfunction
2013-08-06 02:56:30 +00:00
function! airline#extensions#commandt#init(ext)
2013-08-06 15:41:37 +00:00
call a:ext.add_statusline_funcref(function('airline#extensions#commandt#apply'))
2013-08-06 02:56:30 +00:00
endfunction