David Peter
David Peter
Thanks. That should be easy to fix.
Sure. I think we should be able to add that here: https://github.com/sharkdp/numbat/blob/aa9675493de7a50b743028f142d3eb78686b90e5/.github/workflows/ci.yml#L156-L168 > Great project by the way 👏 Thank you!
I also ran into this while working on plotly.rs-based plotting support for Numbat (https://github.com/sharkdp/numbat/pull/464). I looked a little bit into how `askama` (the templating engine used by plotly.rs) works. I...
One hack is to format it as a string: ``` >>> let n = 16! >>> "{n:f}" = "20922789888000" [String] ``` You could add a function `plain` (or similar) to...
Thank you for reporting this. I assume you might need to use `\\`, because otherwise, something like the `\p` in `some\program` would be interpreted as an escape sequence.
> I'm not sure if the errors are too bad, but I would like a second set of eyes on it if anyone are up for it. Yes, of course....
Thank you for reporting this.
A smaller example with a similar problem: ``` >>> if true then 1 |> id else 0 error: while parsing ┌─ :1:16 │ 1 │ if true then 1 |>...
Unrelated: I'm excited about this `unit_list` feature!
> I'm not sure of which is better, but perhaps a terminating token to the if-else expression would solve some of the problem? My thinking is that the then clause...