Matthew Ma
Matthew Ma
> I haven't followed all the code paths, so I can not say definitively that your expects are unreachable. Panicking the whole nushell process has to be the last resort....
Renamed the previous logic worked on into `partial_from_with_parents`, which now returns a `Option`. The idea is to let `partial_from` handle the **dots are part of file/directory name** semantics and let...
This behavior is due to dependency `which` using the PATHEXT environment variable to generate path results ([code](https://github.com/harryfei/which-rs/blob/master/src/finder.rs#L161)). One way to address this is to add a config flag `extension_case` which...
Yes- the current implementation uses the erase line ANSI Escape Code `const ERASE_LINE: &str = "\x1b[2K";` on the first line in the terminal.
I agree. Ideally, the * in the prompt should be replaceable with a countdown timer. I wonder if the timer should be tightly coupled with the transaction lifecycle, though. If...
I implemented a [readline](https://github.com/PlasmaIntec/async-prompt) library which accomplishes the live timer using `tokio`'s async/await functionality. However, my implementation uses an entirely separate approach than the one `rustyline` uses, which would make...
Can you explain more how this is a problem in simulator? I don't see any usages of the `get_current_time` fn implemented for the `IO` trait [[code](https://github.com/search?q=repo%3Atursodatabase/limbo%20get_current_time&type=code)].