Oli Scherer
Oli Scherer
*rebased *the only "missing" "feature" is that the date of the entry is not displayed behind the title, but rather the normal smuxi timestamps are used *i am already throwing...
i'll have a screenshot for you in a minute
 
Yea I don't think this is happening anymore...
I think it's mostly compiler-internal work that is blocking this. I tried it once and it's not super simple to do. Loads of code expects to know that something is...
Layout considerations are completely orthogonal to whether `bool` becomes an `enum` or not. If `bool` keeps not being an enum, this is just a few lines of code in a...
You can always put all the traits into one module and do `use module::*` if all you care about is less typing. Also, advanced enough IDEs (or rustfix) will be...
I opened a new RFC for this: #2242
A c++-lambda-ish macro could do all that boilerplate for us.
I want a green roof on the bikeshed: ``` rust impl Point { pub fn x_mut &'a mut f64 { self.x } } ``` for borrowing multiple fields you'd use...