Making a Zig Clojure-y API for Flecs that’s run in compilation time, I’m following the CLJ approach I have in Vybe (e.g.https://github.com/pfeodrippe/vybe/blob/main/test/vybe/flecs_test.clj#L111)
Cool project!
Question. Given you (vr.impl/intern-methods) like so, how do you get autocomplete and documentation in the editor? Cider, compliment etc doesn't seem to be able to handle this style for me?
@danielmgerson I use Cider, it works fine when using the REPL, for example. Are you seeing something different?
Ofc we could generate something statically ( doc or clj files) or use clong, but it’s working fine so far, the workflow has been good, the runtime bindings show you the expected input and output types
Thanks for the confirmation, probably something in my spacemacs config then 🙏
Seems lsp-completion-mode appears to be the culprit https://github.com/doomemacs/doomemacs/issues/7381#issuecomment-2395074270 . Helped that you confirmed yours is working.