Stefan Holderbach

Results 458 comments of Stefan Holderbach

# Current voting Vote for the topic(s) you care about by selecting the corresponding emoji. (No judgement based on the emojis sentiment!) - :+1: File path completion - :-1: (environment)...

A selection mode inside the line is definetely in scope. And having a set of keybindings, which you are implying with ctrl-a etc., that are closer to the experience using...

The `f.` case is definetely a bug. It also seems to get stuck in the parser state machine. If somebody wants to pick that up, I think it is not...

Currently the `.` get's picked up by the overall key dispatch for vi mode: https://github.com/nushell/reedline/blob/117f13b005052acaa21e959755e56cb25a898ce1/src/edit_mode/vi/mod.rs#L58-L67 By the design of this match statement it should never flow further. It could become...

Was able to reproduce it in a window where the length of the content would exceed the screen height. Hardening `Reedline::wrap` etc. against overflows should be a high priority (don't...

Could be a workaround, would potentially overpaint old stuff. Other theoretical edge case: what happens if you have `y` `>` `height` lines below the cursor and would try to paint...

@jntrnr I think your fixes should avoid the panic on this one, but pasting of over sized content causes scrolling as soon as it repaints. (animated prompt is problematic here)

My take on the multiline hints would be, that multiline entries are probably less likely to be reused than single lines and we could collapse multiline hints as an ellipsis...

Just to be sure on the terminology: history traversal: hitting up arrow with either an empty line or a prefix for quick search to get to previously executed commands hint:...

But yes we should fix what ever is broken with the hinter and a collapsed hint should probably be a configurable option