rename variable so it's more obvious

This commit is contained in:
Bailey Ling 2013-08-14 02:36:09 +00:00
parent 10e8146d7b
commit 7e63d9ddd9
2 changed files with 10 additions and 6 deletions

View File

@ -1,9 +1,13 @@
" MIT license. Copyright (c) 2013 Bailey Ling. " MIT License. Copyright (c) 2013 Bailey Ling.
" vim: ts=2 sts=2 sw=2 fdm=indent " vim: ts=2 sts=2 sw=2 fdm=indent
if !exists('g:airline#extensions#csv#column_display')
let g:airline#extensions#csv#column_display = 'Number'
endif
function! airline#extensions#csv#apply() function! airline#extensions#csv#apply()
if &ft ==# "csv" && exists("*CSV_WCol") if &ft ==# "csv" && exists("*CSV_WCol")
if get(g:, 'airline#extensions#csv#column_identify', '') ==# 'Name' if get(g:, 'airline#extensions#csv#column_display', '') ==# 'Name'
let column = '['.CSV_WCol('Name').CSV_WCol().']' let column = '['.CSV_WCol('Name').CSV_WCol().']'
else else
let column = '['.CSV_WCol().']' let column = '['.CSV_WCol().']'

View File

@ -180,12 +180,12 @@ tagbar <https://github.com/majutsushi/>
*airline-csv* *airline-csv*
csv.vim <https://github.com/chrisbra/csv.vim> csv.vim <https://github.com/chrisbra/csv.vim>
* enable/disable csv integration for displaying the current column number. > * enable/disable csv integration for displaying the current column.
let g:airline_enable_csv = 1 let g:airline_enable_csv = 1
> >
* change how columns are identified. > * change how columns are displayed. >
let g:airline#extensions#csv#column_identify = '' (default) let g:airline#extensions#csv#column_display = 'Number' (default)
let g:airline#extensions#csv#column_identify = 'Name' (extracts column name) let g:airline#extensions#csv#column_display = 'Name'
> >
============================================================================== ==============================================================================