FalsePattern

Results 205 comments of FalsePattern

> I have some problems with autocompletion for variables i have created. It kind of depends on the scope whether it is completed or not. I'm using CLion 2024.1.2, ZigBrains...

I've found the issue, I'll put the fix in 15.0.2. The autocompletion "word searcher" logic didn't consider `(` as a separator symbol so it was trying to autocomplete `free(...`, `if(...`,...

I've reworked some of the LSP logic in 14.0.0, all these issues should be fixed now. Syntax highlighting can still occasionally break when running a file reformatting, but closing and...

No longer relevant since 16.0.0-pre1, LSP integration is handled by LSP4IJ.

Personally, I prefer the first option, as it involves the least amount of legacy maintenance burden, and I already always use the latest zig+zls+IDEA versions, so I have no use...

(Also tagging https://github.com/zigtools/zls/issues/1020 here, if they come to a final decision then ZigBrains will also follow a similar route to maintain community parity)

the ZLS issue has been closed, i'm closing this page too with the same result: ZigBrains versions released during the lifecycle of a specific zig version will keep working with...

You can use the green arrow run button in build.zig if you want to run `zig build`-based tasks, the arrows in the files are for `zig run` and `zig test`...

I'll look into implementing some sort of custom build runner into zigbrains in a future release that can utilize build.zig dependencies for the in-file run buttons (similarly to what intellij...

As a rough idea/draft of this feature, here's a concept for how dependency discovery would be done for the tests: - For each test-type step in build.zig, extract all the...