Dmitry Ignatovich
Dmitry Ignatovich
It is also possible to disable `editor.copyWithSyntaxHighlighting` for all csv files by default at the extension level, but I am not sure if this is the right thing to do,...
I also added export to Excel command recently (available through the context menu: Right Click -> Rainbow CSV -> Copy .. Export) which puts the file content (without colors) in...
The autodetection algorithm works this way: 1. It tries to find a separator that would provide a consistent number of fields in each line. This attempt fails for this file...
Thanks for the heads up! I will look into this and the new built-in functionality compatibility with Rainbow CSV in general.
Hello! Could you please clarify this? The extension itself is encoding-oblivious it deals with the JS strings decoded by the editor. So if VSCode supports GBK, then Rainbow CSV should...
Thank you for the demo! Did you try to manually switch the encoding to "GBK" by clicking on the encoding button at the bottom? what happens in that case? Does...
Thanks! I did some tests with your file and in my case VSCode always opens it with UTF-8 encoding no matter if Rainbow CSV is enabled or not. But if...
Sorry for the late reply, I was able to reproduce the problem with `files.autoGuessEncoding`. I will take a look at it later when I have more time, thanks again for...
Looks like this is actually related to an issue in the VSCode itself see https://github.com/microsoft/vscode/issues/39084 and https://github.com/microsoft/vscode/issues/127936. And actually, it is possible to reproduce the problem even with Rainbow CSV...
Could you please clarify what do you mean by "affecting when it is called in code"? I also need an example of the current and expected behavior. There is a...