Diego Augusto
Diego Augusto
> It's possible to do this: > >AsyncBufferedReader(a_regular_file, ...) > > Would a wrap function do something more? It seems `AsyncBufferedReader` takes a str as it's file parameter. Since this...
+1 on that one. CHADtree breaks a little when I invoke it using `CHADopen $path` because it does not toggle, so having a way of knowing if it is open...
I don't like this either. I use `` in normal mode to access buffers and this is not very good. Maybe making this optional by removing it from the code...
Thanks for the response! That's fine, I'm a patient guy. Really looking forward to that, my hopes are really high for this wm. Cheers, Diego.
Agreed. Having to mix java's exceptions and rust's `Result` enum, I'm confident the syntax proposed would look and feel so much better.
Is this still being worked on?
Yeah, that's not a problem with the code. The code simply "cuts" the window corner, so drawing a little border around it like the terminal does would be quite the...
Hey, just adding my 2 cents: I thought about adding some layout information to avoid trait overhead. To do this, we can think about separating the structs into 3 type...
I use a pattern that works in Rust, but would be great to have in Dart: ```dart abstract class Receiver { void handleMessage(T msg); } class ListPage extends StatefulWidget {...
> @Diegovsky that looks like method overloading to me Kinda. I'm not sure if you have experience with Rust, but trait (interface) implementations are a bit like Dart's extensions. The...