Stefan Holderbach
Stefan Holderbach
Yeah that looks gnarly. There are separate issues to investigate: 1. The soft keyboard will trigger a vertical resize, which reedline still doesn't handle gracefully. 2. The completion content remains...
I'm gonna transfer this to `reedline` as we would be able to solve it there. Implementing it will certainly introduce some additional complexity to track the state of deleted entries...
Could not reproduce on linux with either `cat testfile` or nu's `open --raw testfile` (File had to be stripped of the last new line by `perl -pi -e 'chomp if...
# Current voting Vote for the topic(s) you care about by selecting the corresponding emoji. (No judgement based on the emojis sentiment!) - :+1: Validation for multiline continuation - :-1:...
Some commands in the `str` family support regular expression patterns (with a switch) so we could expand that to further commands within reason.
I am open to both clarifying that a bit better and adding regex support that can be switched on/off. (Pattern itself would be vague for me even which regex flavor...
@WindSoilder added one test in that area with #6688
Interesting that we didn't come accross this issue earlier! Thanks for catching it and doing a proper and thorough investigation @Yesterday17 The old [ECMA-48 spec for the ANSI terminal](https://www.ecma-international.org/wp-content/uploads/ECMA-48_5th_edition_june_1991.pdf) is...
Currently `any` and `all` require an explicit predicate that should be tested.
The behavior of `| any true` is not really doing what I would consider `any` as a boolean summary. Example: `[false]`  My `any` base case would rather be `|...