rainbow_csv
rainbow_csv copied to clipboard
🌈Rainbow CSV - Vim plugin: Highlight columns in CSV and TSV files and run queries in SQL-like language
This plugin seems to hijack the space key to create a line fold or something far less useful than my leaderkey, which is space. Using Neovim .7. I have `let...
Why not change ```vim if !exists("g:disable_rainbow_key_mappings") nnoremap :call rainbow_csv#copy_file_content_to_buf(b:self_path, b:root_table_buf_number) endif ``` to ```vim execute 'nnoremap ' . get(g:, 'rainbow_key_mapping', '') . ':call rainbow_csv#copy_file_content_to_buf(b:self_path, b:root_table_buf_number)' ``` ? Thanks!
After setting g:rainbow_comment_prefix to #. when I put the cursor on a comment line, rainbow_csv reports "The number of fields in header and this (comment) line are different." I'd expect...
Adding a modeline for vts values turns off the colors unless I also add "ft=tsv". Occurs on Ubuntu Fossa and cygwin64.
This would be especially useful for multiline CSV fields. This also could be useful for very long (oversized) textual fields even if they don't have newlines in them - in...
Using RBQL on Windows 10 and node as the RBQL backend and with shell set to Powershell as described here: https://neovim.io/doc/user/options.html , search for powershell: ``` let &shell = has('win32')...
such as type Tab after `:Select ma` it will automatically complete `max(`? Thanks!
Tooltips are really helpful, however, if the first row (if there is a header) would move along with scrolling would be really great. Any idea if this is feasible?
I can set the comment prefix in runtime by running the RainbowComment command over a pound sign (#), but if I try to set it in my vim init via...
With `g:rbql_use_system_python` enabled, RBQL query does not work well. ```vim " ${HOME}/.vimrc Plugin 'mechatroner/rainbow_csv' let g:rbql_backend_language = 'python' let g:rbql_use_system_python = v:true ``` ```vim :Select a1 group by a1 "...