PgBiel

Results 402 comments of PgBiel

> Actually using kitty also didnt solve the issue. Sorry that I closed the issue but seems like it didnt fix the issue either by installing the language package. What...

Perfect, thank you!!! This should be perfect for my use case :+1:

A related thought (I apologize if this is off-topic): it'd be nice if we could override dependencies in arbitrary ways: not only pin a package to a different version (which...

Taking a look at some prior art (so we can better decide the semantics for Gleam): 1. Rebar3 allows overriding dependencies' configurations in arbitrary ways, which should include overriding transitive...

I've made a proof of concept of the `[patch]` design at PR #2981 . Note that said PR is **by no means a final implementation or design**, and I am...

That's true! Besides the problem of bypassing constraints, I also have in mind the idea of being able to adapt dependencies to your environment or target, which is something I...

With that said, some of this functionality **is already possible today** - top-level dependencies appear to have priority over transitive dependencies (at least when versions are compatible), so you can,...

# A report on the state of things So, I just spent quite some time debugging the `#[godot_api]` macros (in the plural because the implementations for `#[godot_api] impl Struct` and...

# Possible solutions and conclusions ## `#[itest]` I'm listing this first since it's the initial example mentioned in this issue. `#[itest]` should be the **most immediate macro to 'fix'**, since...

## `#[godot_api]` For `#[godot_api]` macro(s), the main problem is regarding conditional compilation, as it's not as straight-forward as with `#[itest]` where `#[cfg]` always takes priority, and macros which don't affect...