Dmitry Ignatovich
Dmitry Ignatovich
Yeah, you are right, I will try to add this functionality, and the VirtualHeader feature should also be supported in RBQL.
Thanks for reporting. I agree that this is an issue, and this might actually be a special case of a more general problem, see #69
Hi @bovender, I appreciate the feedback! I agree, that in the case of commas, whitespaces after the separators would look more natural. ``` column 1, column 2, column 3 1,...
Oh, I see what you mean. So basically we want to keep the spaces **before** but we also want to add exactly one whitespace **after** for cosmetic reasons. I like...
RFC 4180 is not a "standard". And according to RFC 4180 the only legal line separator in csv files is CRLF, so if we were to follow the letter of...
OK, You are right, it would be reasonable to support linebreaks in fields in a special mode. So I spent some time trying to implement a grammar that would do...
I made a proof of concept in [Vim](https://github.com/mechatroner/rainbow_csv)  When highlighting gets glitchy this command fixes it: ``` :syntax sync fromstart ```
@ffxivvillein VSCode language grammars do not match across newlines, so even if we include newline in regexp it won't work.
@Rots, I understand that there is a practical need for this. Actually I've recently implemented an option for RBQL console to correctly handle multiline values. This can be useful for...
I implemented multiline fields support in Sublime Text version of "Rainbow CSV": https://packagecontrol.io/packages/rainbow_csv Still no solution in sight for VSCode.