2014-01-20 04:44:44 +00:00
|
|
|
" MIT License. Copyright (c) 2013-2014 Bailey Ling.
|
2013-08-19 23:51:30 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-13 21:27:21 +00:00
|
|
|
|
2013-09-11 17:55:57 +00:00
|
|
|
if !get(g:, 'loaded_csv', 0) && !exists(':Table')
|
2013-09-10 15:37:25 +00:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2013-08-19 23:51:30 +00:00
|
|
|
let s:column_display = get(g:, 'airline#extensions#csv#column_display', 'Number')
|
2013-08-14 02:36:09 +00:00
|
|
|
|
2013-08-16 02:17:59 +00:00
|
|
|
function! airline#extensions#csv#get_column()
|
2013-08-14 03:53:29 +00:00
|
|
|
if exists('*CSV_WCol')
|
2013-08-19 23:51:30 +00:00
|
|
|
if s:column_display ==# 'Name'
|
2013-08-14 03:53:29 +00:00
|
|
|
return '['.CSV_WCol('Name').CSV_WCol().']'
|
2013-08-13 21:27:21 +00:00
|
|
|
else
|
2013-08-14 03:53:29 +00:00
|
|
|
return '['.CSV_WCol().']'
|
2013-08-13 21:27:21 +00:00
|
|
|
endif
|
2013-08-14 03:53:29 +00:00
|
|
|
endif
|
|
|
|
return ''
|
|
|
|
endfunction
|
2013-08-14 01:52:31 +00:00
|
|
|
|
2013-08-21 15:14:12 +00:00
|
|
|
function! airline#extensions#csv#apply(...)
|
2013-08-14 03:53:29 +00:00
|
|
|
if &ft ==# "csv"
|
2013-08-25 15:39:11 +00:00
|
|
|
call airline#extensions#prepend_to_section('gutter',
|
|
|
|
\ g:airline_left_alt_sep.' %{airline#extensions#csv#get_column()}')
|
2013-08-13 21:27:21 +00:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#csv#init(ext)
|
2013-08-23 21:22:20 +00:00
|
|
|
call a:ext.add_statusline_func('airline#extensions#csv#apply')
|
2013-08-13 21:27:21 +00:00
|
|
|
endfunction
|
|
|
|
|