Yung Siang Liau
Yung Siang Liau
This is interesting and should be possible. Maybe something like a `--spreadsheet` option.
Thanks for raising this! My preference is to keep `--colorful` as an opt-in option for now. It's mostly personal preference. I personally prefer a calmer look without too many colors....
Hi @zyhazz, thanks a lot for the PR and for contributing to the project, especially since it's your first Rust contribution! 🙌 I've been planning to add a similar feature,...
Sure. I'm curious how would you like to use csvlens as a library? The way csvlens is written now is very much an application, but if there's a way it...
I added a `lib.rs` in the main branch to expose the function that the binary's `main` would call. It can be used this way: ```rust use csvlens::run_csvlens; let out =...
Indeed, let's close this issue now. Will open another issue for array of records support.
Could you share more details on the failures? They seem to work fine locally for me and on CI.
Thanks! I could reproduce the failures with `app::tests::test_sorting` and `app::tests::test_sorting_with_filter` after upgrading cargo / rustc. Those should be fixed now. Still need to look into `app::tests::test_carriage_returns`.
I updated the tests to sort by a column without ties which was likely the cause of the failures in different platforms. Feel free to reopen if you still still...
@Cryolitia Thanks for the detailed report! Regarding the sleeps in the tests: the app performs certain operations, like sorting and searching, in separate threads. The sleeps are a quick (though...