Stephen M. Coakley

Results 113 comments of Stephen M. Coakley

This is caused by a race condition that I can't easily fix. The way the titlebar is darkened follows these steps asynchronously: 1. Get all windows open on the desktop....

HI! I have been following your adventures with trying to get Electron, and then Atom to support dark themes, and have been waiting on https://github.com/atom/atom/issues/8287 also. I just grew impatient...

Thanks for the suggestion! This is something I'd definitely be _open_ to adding to Castaway as long as it can be done in an expression context. The general design for...

@NobodyXu That may require some experimentation, but my instinct tells me that `impl Trait` won't help us here. The reason why is that we can't guarantee that the existential will...

`match_type!` doesn't do any conditional compilation; it could be thought of it as being more similar to `if cfg!() {}` as opposed to `#[cfg()] {}`. All branches are present and...

I'm not sure even then would this help. The problem is that in Rust, traits are not considered types (unlike interfaces in many languages). So you can't actually "compare" a...

Yep, very true. And now you're up to speed as to why Castaway doesn't currently support casting to traits. 😀 Unless some other novel implementation strategy is discovered.

Saw this thread since Bruno pinged me. 😉 I do feel a bit bad since I haven't been helping to actively maintain OMF for over a year now, since I...

The install fails because of these lines: ``` Installing package Hogan fatal: repository 'Hogan' does not exist Could not install Hogan. ``` Check `$HOME/.config/omf/bundle` to see if there's packages referenced...

We don't support that currently, but we could definitely write that down as a feature request. I'm all for it personally. Perhaps we could use an environment variable to override...