2013-08-14 02:36:09 +00:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
2013-08-13 21:27:21 +00:00
|
|
|
" vim: ts=2 sts=2 sw=2 fdm=indent
|
|
|
|
|
2013-08-14 02:36:09 +00:00
|
|
|
if !exists('g:airline#extensions#csv#column_display')
|
|
|
|
let g:airline#extensions#csv#column_display = 'Number'
|
|
|
|
endif
|
|
|
|
|
2013-08-14 01:52:31 +00:00
|
|
|
function! airline#extensions#csv#apply()
|
2013-08-13 21:27:21 +00:00
|
|
|
if &ft ==# "csv" && exists("*CSV_WCol")
|
2013-08-14 02:36:09 +00:00
|
|
|
if get(g:, 'airline#extensions#csv#column_display', '') ==# 'Name'
|
2013-08-14 01:52:31 +00:00
|
|
|
let column = '['.CSV_WCol('Name').CSV_WCol().']'
|
2013-08-13 21:27:21 +00:00
|
|
|
else
|
2013-08-14 01:52:31 +00:00
|
|
|
let column = '['.CSV_WCol().']'
|
2013-08-13 21:27:21 +00:00
|
|
|
endif
|
2013-08-14 01:52:31 +00:00
|
|
|
|
|
|
|
if !exists('w:airline_section_gutter')
|
|
|
|
let w:airline_section_gutter = ''
|
|
|
|
endif
|
|
|
|
let w:airline_section_gutter .= g:airline_left_alt_sep.' '.column
|
2013-08-13 21:27:21 +00:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#csv#init(ext)
|
2013-08-14 01:52:31 +00:00
|
|
|
call a:ext.add_statusline_funcref(function('airline#extensions#csv#apply'))
|
2013-08-13 21:27:21 +00:00
|
|
|
endfunction
|
|
|
|
|