localcfg/plugins/csv.vim.vimΒΆ

Enforce vim script implementation to reduce ambiguities and improve robustness:

scriptversion 4

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.