Emi

Results 458 comments of Emi

@DaivikDave I'd love that! Right now Go and Python indexers are pretty active, maybe you'd like to work on creating a new indexer for a new language, though? You can...

As a Java dev, what would be the best way to truncate those paths? Taking the first one as an example, I could do: 1. `extras/.../gson/typeadapters/UtcDateTypeAdapter.java` 2. `.../google/gson/typeadapters/UtcDateTypeAdapter.java` 3. `extras/src/main/java/com/google/gson/typeadapters/...`...

100% agree, this is a bug! If you're keen to try debugging it, feel free to!

Absolutely agree, this is a top priority for me to fix. Thanks for filing the issue!

I think it's very important we consider each of these in isolation, not all together. Merely re-exporting all of these is probably not a good idea. It's important that we...

## Event loop, IO mode, etc. This hasn't been considered yet, but is also another example where just exporting would be a mistake. We need to consider what the async...

Thanks for the detailed write-up, this makes a lot of sense. I've just merged https://github.com/hexops/mach/issues/360 and my conclusions for now are: 1. `log_level`, `scope_levels`, and `allow_todo_in_release` should be re-exported for...

Yup, I'd like to support this use case more nicely. The workaround for now would be to use: ``` SDK_PATH=$(pwd)/.. zig build ``` And have a clone of the relevant...

Totally agree about making this a custom build step! > `gpu-dawn` should expose `NO_ENSURE_SUBMODULES` in the `Options` struct Sounds reasonable. > a way to override the default paths of thisDir()...

> I think it's important for package manager, and symlinks aren't really an option because Zig treats them as separate paths as far as I'm aware OK, I see what...