Alexandre Bury

Results 287 comments of Alexandre Bury

On the latest master I use a regular `OnEventView` for the global callbacks. This lets us define pre and post-events, so we can now define the `Ctrl-C` callback as a...

Indeed! Seems like the `Any` dance around event identification didn't quite work quite as intended - should be all better on the latest master. Thanks for pointing that!

I think @IGBC has started experimenting with something a bit similar: https://github.com/igbc/cue Haven't looked much in there so I'm not sure how far the experiment went. The brute-force solution I'm...

Thank you for that! Pretty impressive to get something like that working with so few lines of code. Note that a few edge cases may need some special effort to...

Hi, and thanks for the report! I think the trick is to use a `ScrollView` and to make its content `full_screen()`, not the `ScrollView` itself: ```rust use cursive::traits::*; fn main()...

By default `ScrollView` "maintains" its offset: if it starts at line 5, then it will keep starting at line 5, even if the actual text changed. You can use [`scroll_strategy`](https://docs.rs/cursive/0.14.0/cursive/views/struct.ScrollView.html#method.scroll_strategy)...

I think the problem here is with the transparent view, without anything behind it. In your case you probably don't need a transparent layer, and can use a regular fullscreen...

Thanks for the report! Will investigate.

Arf cannot reproduce here - it works fine locally, using current cursive master and current alacritty git master: ``` % alacritty --version alacritty 0.5.0-dev (f48c43f4) ``` ![Screenshot from 2020-04-24 11-56-33](https://user-images.githubusercontent.com/564903/80247300-aac0e600-8622-11ea-9315-58d7d3f272ff.png)...

Woo it does look pretty messed up. Does it happen with every example from the repo? What is your `$TERM` env variable?