Stefan Holderbach
Stefan Holderbach
I wasn't able to reproduce this failure mode on my machine. Could you run nu with `RUST_BACKTRACE=1` set? My working hypothesis based on the minimal crash info is that there...
I think there are two threads to this issue: 1. The history menu we provide out of the box could be more helpful to have functionality to filter for success...
The advanced features are dependent on using a richer representation of the history entries. That is currently enabled for the sqlite history (would stop nobody from defining a rich text...
With a history with rich additional information that might be used as filtering (e.g. cwd, session) there is value in keeping entries (and they are unique in the data sense...
Interesting that the reedline side seems to be fine but the `[crossterm::terminal::disable_raw_mode](https://docs.rs/crossterm/latest/crossterm/terminal/fn.disable_raw_mode.html)` seems to faithfully return to the state before `enable_raw_mode`. I would have to look up what you added...
This seems to be the same bug as in #6553
Sadly a variety of commands are not composable like that yet. The `not` command works in the context of expressions (like math and boolean checks). The string/path commands on the...
At the moment we don't have a notion of function call syntax ( the `($in | path contains)` in my example is a [subexpression](https://www.nushell.sh/book/variables_and_subexpressions.html#subexpressions) that happens to look like an...
Can reproduce the hanging. At first I thought this was related to the external command pipeline bugs we saw with #6273, but there seems to be a separate issue, because...
Interesting: ``` sh open -r ~/.zshrc | lines | table cat ~/.zshrc | lines | table ``` both work fine. And doing `open -r ~/.zshrc | table` produces not tablified...