added csv extension

This commit is contained in:
Christian Brabandt
2013-08-13 23:27:21 +02:00
parent 9dd682212f
commit c5e21aa170
4 changed files with 36 additions and 0 deletions

View File

@@ -130,6 +130,11 @@ function! airline#extensions#load()
call airline#extensions#tagbar#init(s:ext)
endif
if g:airline_enable_csv
call airline#extensions#csv#init(s:ext)
endif
if exists(':VimShell')
let s:filetype_overrides['vimshell'] = ['vimshell','%{vimshell#get_status_string()}']
let s:filetype_regex_overrides['^int-'] = ['vimshell','%{substitute(&ft, "int-", "", "")}']

View File

@@ -0,0 +1,20 @@
" MIT license. Copyright (c) 2013 Bailey Ling.
" vim: ts=2 sts=2 sw=2 fdm=indent
function! airline#extensions#csv#get_statusline()
if &ft ==# "csv" && exists("*CSV_WCol")
if exists("g:airline_filetype_csv") && g:airline_filetype_csv ==# 'Name'
return '['.CSV_WCol('Name').CSV_WCol().']'
else
return '['.CSV_WCol().']'
endif
else
return ''
endif
endfunction
function! airline#extensions#csv#init(ext)
call a:ext.add_statusline_funcref(function('airline#extensions#csv#get_statusline'))
let g:airline_section_c .= ' '.g:airline_left_alt_sep.' %{airline#extensions#csv#get_statusline()}'
endfunction