tigregalis
tigregalis
The example just needs to be corrected on the Visual Studio Marketplace. Looks like the original example was copied from another extension "toggle" which the author references. Really useful extension,...
@geercom Check out #21
I ran into the same limitation, but you can use the Zoom to increase the font size that way.  The zoom appears to be remembered between sessions.
Maybe [font-kit](https://github.com/servo/font-kit) could be used? [Amethyst](https://docs.amethyst.rs/stable/src/amethyst_ui/font/systemfont.rs.html#30-39) does the below: ```rust use font_kit::{ error::SelectionError, family_name::FamilyName, handle::Handle, properties::{Properties, Style}, source::SystemSource, }; /// Returns the default system font. pub fn default_system_font() -> Result...
It appears the font discovery/loading capability is all within the [`sources` module](https://github.com/servo/font-kit/tree/master/src/sources) (and that module doesn't go much further than that). Perhaps they might be encouraged to split it out...
> [cosmic_text](https://github.com/pop-os/cosmic-text) includes font loading features. It looks like a fantastic, well-supported solution, and I think the right path forward for this issue is to migrate to `cosmic_text` and use...
What's strange to me is that I am compiling cg_clif with LLVM , while @chamons was compiling some third program using a precompiled cg_clif build. The only commonalities are Windows...
I implemented Option 1 as it was fairly straightforward, but saving/resume the internal state wasn't the issue as far as my implementation went: I've resolved that now. (It turns out...
Is this the right time to rename sections to spans?
This is very cool and very much needed. I haven't looked at the implementation or given it a test-run just yet. Is there a path from here to leptos-like control...