rainbow_csv.nvim
rainbow_csv.nvim copied to clipboard
Neovim port of mechatroner/rainbow_csv
`:RainbowAlign` inserts actual spaces into the csv to align everything. This results in a modified file. Would it be possible to implement `:RainbowAlignVirtual` that [virtually inserts](https://jdhao.github.io/2021/09/09/nvim_use_virtual_text/) the spacing as to...
I am using this plugin for the "rainbow" part of it. I want each CSV entry to be a different color. This is not happening. I am using this test...
Hi, I am minimally using this plugin for viewing and light editing of csv files in neovim, activating `RainbowAlign` in autocmd for *.csv My question is: is there a way...
If you use nvim-treesitter highlight along with this plugin, you might encounter some highlighting issues with csv or tsv file types. nvim-treesitter's configuration has a couple of options that can...
Enviroment: windows 11 Nvim version 0.10.2 In function py_source_escape Change line string.gsub(src, [[\\\\]], [[\\\\\\\\]]) to ``` lua local function py_source_escape(src) local dst = string.gsub(src, [[\]], [[\\]]) dst = string.gsub(dst, [[\t]],...