fredizzimo

Results 1393 comments of fredizzimo

Font feature support was added, so you can now disable ligatures using that for fonts that support it. * https://github.com/neovide/neovide/pull/2213 But it appears like some fonts like Hack does not...

Hm.. my comment about the Hack font seems to be wrong. That font does not even support ligatures at all https://github.com/source-foundry/Hack, but there are some feature requests for it, and...

If anyone is wondering, then the correct way to disable the ligatures for `FiraCode` is ```toml [font.features] "FiraCode Nerd Font" = ["-calt"] ``` And there are some talks in the...

@erlangparasu I wrote this a couple of months ago? From my perspective there's nothing we need to do. > Are there any examples of a font that doesn't provide an...

I'm closing this for now, but it can be re-opened, if it turns out that some font can't be configured.

@ClaireCJS, That depends on the font. Some fonts can be configured, others can't. For example here's a feature request for FiraCode https://github.com/tonsky/FiraCode/issues/1461

And a bonus feature would be a special dot repeat that requires you to select the label again, but otherwise perform the same operation.

@kchibisov, I don't know if this fix is correct or not, but the Windows keyboard layouts do in fact allow mapping of ctrl+key to something. Check `VK_OEM_4` here https://www.kbdlayout.info/kbdcz/shiftstates/VK_CONTROL. So...

If you are already building from source, can you run `cargo run --features d3d_debug` if that does not give more information, then it looks like this line is wrong https://github.com/neovide/neovide/blob/818ff73f410dd6a1170c8a6414e8b9f33d46d50b/src/renderer/d3d.rs#L112...

Thanks, yes, then it's likely what I expected. Can you try changing line 112 in d3d.rs to `CreateDXGIFactory2(0).expect("Failed to create DXGI factory") `, `0` instead of `DXGI_CREATE_FACTORY_DEBUG`?