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