diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2014-12-22 21:57:06 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2014-12-22 21:57:06 +0100 |
commit | d8eaa50aed67af1666c3e45b719510253800ca8d (patch) | |
tree | 98d4563eb29fecdf7a8fcf3e0d6cf61c0d1977df /ftplugin | |
parent | 8e26e6e963434108d418557cd48cf6604de30c0d (diff) | |
download | vim-polyglot-d8eaa50aed67af1666c3e45b719510253800ca8d.tar.gz vim-polyglot-d8eaa50aed67af1666c3e45b719510253800ca8d.zip |
Update
Diffstat (limited to 'ftplugin')
-rw-r--r-- | ftplugin/csv.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftplugin/csv.vim b/ftplugin/csv.vim index 7d15b812..c1a5fa4f 100644 --- a/ftplugin/csv.vim +++ b/ftplugin/csv.vim @@ -1609,7 +1609,7 @@ fu! <sid>AnalyzeColumn(...) "{{{3 let qty = len(data) let res = {} for item in data - if empty(item) + if empty(item) || item ==# b:delimiter let item = 'NULL' endif if !get(res, item) |