Piotr Kufel
Piotr Kufel
Calling ``` python pyter.ter('','') ``` raises: ``` 34 err += 1 35 iwords = new_iwords ---> 36 return (err + mtd(iwords)) / len(rwords) 37 38 ZeroDivisionError: division by zero ```
This is mostly for debugging unit tests (well, a bit late but still). I imagine may be also useful for app-level logging (it seems we use tracing for that already?)...
# Description Currently there is a bit of chaos regarding construction of history file paths. Various pieces of code across a number of crates reimplement the same/similar logic: - There...
# Description This is mainly https://github.com/nushell/nushell/pull/13450 (which got reverted). Additionally: - this adds `--include-ids` flag to avoid overwriting existing history when using sqlite - added extra tests - create backup...
Temporarily disable the `history-import` command See #14076 for details.
I'm looking into adding fuzzy history search in nushell, and one thing that it really needs is the ability to highlight the matched part of each item. Columnar menu already...