janisdd
janisdd
If I understand the code correctly, the preview is used to limit the delimiter guessing to the first 10 lines https://github.com/mholt/PapaParse/blob/master/papaparse.js#L1304 In some situations the data can be very long...
### Version? - vs code plugin ### Feature In the current release notes of vs code https://code.visualstudio.com/updates/v1_62#_file-watching-changes they mentioned that they are transitioning to a new file watcher... If I...
### Version? - vs code plugin ### Feature Make the extension compatible with github codespaces (vs code web, https://github.com/features/codespaces. When you open a github project in the browser and press...
### Version? - both ### Description After moving a column and then deleting the column left/right to it (also works with some other columns) and then undoing corrupts the data!...
This PR fixes issue #2018 It allows the speaker view to control/sync the video in the main window (only one way). The following operations are supported: - play/puase - seeking...
Fixes issue #1529 - syc main and speaker view zoom It uses a BroadcastChannel to communicate between the windows. The sync is in both ways. The new config option `syncZoom`...
Add more notes where the undo stack is cleared, e.g. - when apply changes to file is used, the user switches to the file and then back to the extension,...
### What OS? - all ### Description When a column is sorted, the manual row move feature doesn't work properly. However, it does work again if the column sorting is...
While looking into https://github.com/mholt/PapaParse/issues/1035 I noticed that the `escapeChar` is wrongly set when the `quoteChar` is changed. This is only the case for `Papap.unparse`. Example: ```js Papa.unparse([['a', 'x+y']], {quoteChar: '+'})...
### What OS? - all ### Description From issue 1035 in `papaparse` which also affects our version of `papaparse` ```js console.log(csv.unparse([['x"y']], { quoteChar: '@', delimiter: ' ' })) ``` outputs...