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