Hi there and thank you for your great work! I'm a greenhand to ziglang and I try to use websocket.zig to make another lib. So far I've installed zigmod for package management. And I'm using vscode with official Zig language extension. But when I import this lib with the following code:
const websocket = @import("websocket");
I can't not jump to the code of websocket.zig in vscode with shortcut ctrl+Left Click. I've made sure that websocket.zig is in the .zigmod dir.
I'm not sure this is a issue with Zig Language Extension or the Zigmod Package Manager. Could you please tell my how to install websocket.zig in the right way, and how to embed it with my lib ? Thank you so much!
Hi there and thank you for your great work! I'm a greenhand to ziglang and I try to use
websocket.zig
to make another lib. So far I've installed zigmod for package management. And I'm using vscode with official Zig language extension. But when I import this lib with the following code:I can't not jump to the code of
websocket.zig
in vscode with shortcutctrl+Left Click
. I've made sure thatwebsocket.zig
is in the.zigmod
dir.I'm not sure this is a issue with
Zig Language Extension
or theZigmod Package Manager
. Could you please tell my how to install websocket.zig in the right way, and how to embed it with my lib ? Thank you so much!