Paul Buehne
Paul Buehne
In [`engine.rs`](https://github.com/nushell/reedline/blob/9f0095f1509e5753ed3a6bd4672e5697a4681156/src/engine.rs) there are a few methods whose docstrings start with the words "a builder to". The Builder pattern is almost certainly a great fit for initializing a `Reedline`, but...
The Cargo book states about features > A consequence of this is that features should be additive. That is, enabling a feature should not disable functionality, and it should usually...
As I already noted [here](https://github.com/nushell/reedline/issues/348#issuecomment-1374541264), the current implementation for prompts does not behave well under certain conditions (e. g. if `reedline::prompt::base::Prompt` returns a string containing control characters i. e. line...
### What? Currently, hunter camps seem somewhat awkward to me. Especially the fire places, because Minecraft 1.14 added campfires. Furthermore, multiblock tents seem to me a better fit, because they...
In accordance with SemVer, I bumped the minor version. Not too sure whether this I wanted though.
First and foremost, thanks for having a changelog at all! I wanted to suggest to look at [Keep A Changelog](https://keepachangelog.com/en/1.1.0/), because I really like that spec for Changelogs and I...
I ran into a problem where I wanted to decompose a rotation into a part which rotates around a specified axis and perpendicular to it. This can be done using...
This is pretty much just #165, but for the `RangeInclusive` type. I tried adding the Plugin and tried registering the type explicitly, but neither worked.
Should be `if`, was `iff`
As far as I understand, the cancel safety issues around `push` and `pop` arise from temporarily storing the object inside the future. ``` A B | | (1) (2) |...