Mahdi Bahramian

Results 6 comments of Mahdi Bahramian

Can we handle it like rustup? ![image](https://github.com/user-attachments/assets/80482043-8e63-42b0-944c-d3c4a19d3174) I think it uses arg[0] to relay commands to correct versions of executables.

how was it fixed? I'm asking so I can know project's structure better for potential future contributions :)

I'v updated to following `zig:0.14.0-dev.3452+0367d684f , zls:0.14.0-dev.406+336f468c` and it still can't recognize types!

Let me give you the most basic example : ```zig fn layer1(x: anytype) void { x.layer2(); // zls doesn't know anything about x including x.layer2() return; } fn layer0(x: anytype)...

how would someone try to implement bidi in Vim?

It is also possible to make it ~generic : ```zig // this code is taken from zig 0.15.0 stdlib => peekDelimiterInclusive // with std.mem.indexOfScalar replaced with indexOfPos_func fn peekUntilInclusiveGeneric(reader: *std.io.Reader,...