Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 622 Bytes

csv.vim.rst

File metadata and controls

21 lines (13 loc) · 622 Bytes

localcfg/plugins/csv.vim.vim

When guessing delimiters fails assume comma:

let g:csv_default_delim = ','

The displayed data when comma is not the correct field separator makes it immediately obvious. Therefore defaulting to the most likely format is far more useful than reading the warning and then setting it manually.

Use strict column mode as the default:

const g:csv_strict_columns = v:true

Note

While the non-strict mode is useful in certain cases, it is easy to :unlet this when the need arises.