Dmitry Ignatovich

Results 195 comments of Dmitry Ignatovich

@JanisE Good question! Yes, it may seem that many other grammars in VSCode don't have any problems with multiline strings. But this is because they are using `begin`/`end` matching which...

@jjspace Thanks, I think it is possible to adjust CSVLint so that it can accept quoted multi-line strings, and I agree that this could be a useful improvement in some...

I am exploring a potential path forward to support multiline highlighting using a combination of these two VSCode API features: 1. `onDidChangeTextEditorVisibleRanges` event which would allow dynamic highlighting of the...

Thank you very much, @ajhyndman! Your syntax is very impressive, took me some time to understand how it works. I was absolutely sure that there is no way to implement...

I just published version 3.0.0 which supports multiline fields with some limitations and raw edges, the new RFC4180-compatible dialect is implemented a separate "syntax" which is called "dynamic CSV" -...

@petervandivier I just tested and it worked for me. Although I discovered that when the filetype is already "Dynamic CSV" the highlighting doesn't change immediately and I have to click...

@petervandivier Could you please try it at http://vscode.dev please and perhaps check if `Set separator -Basic` works with some exotic separators like `0` (this would ensure that a non-builtin highlighting...

@petervandivier Actually I was just able to reproduce this, one of the problems is that the file is too short (if you make it 10 lines at least is will...

Hello, sorry for the late reply. Having JSON messages as CSV fields should be a more or less common use case, so I agree that it would be nice to...

Unfortunately Rainbow CSV doesn't currently support "$" separator, see the table of supported separators here: https://github.com/mechatroner/vscode_rainbow_csv#supported-separators I will probably add "$" in the next version. My ultimate goal is to...