zigjr
zigjrは、Zigプログラミング言語を使用した軽量なエディタで、開発者が効率的にコードを書くためのツールです。直感的なインターフェースと豊富な機能を備え、特にZig言語に特化したサポートを提供します。ユーザーは、シンプルな操作でコードの補完やエラーチェックを行うことができます。
GitHubスター
37
ユーザー評価
未評価
お気に入り
0
閲覧数
23
フォーク
2
イシュー
0
インストール方法
難易度
上級推定所要時間
20-45 分
インストール方法
Select a version of the library in the [Releases](https://github.com/williamw520/zigjr/releases) page,
and copy its asset URL. E.g. https://github.com/williamw520/zigjr/archive/refs/tags/1.0.0.tar.gz
Use
This command updates your
Next, update your
zig fetch
to add the ZigJR package to your project's dependencies. Replace
with the version you selected.
shell
zig fetch --save https://github.com/williamw520/zigjr/archive/refs/tags/.tar.gz
build.zig.zon
file, adding ZigJR to the dependencies
section with its URL and content hash.
diff
.{
.name = "my-project",
...
.dependencies = .{
+ .zigjr = .{
+ .url = "zig fetch https://github.com/williamw520/zigjr/archive/refs/tags/.tar.gz",
+ .hash = "zigjr-...",
+ },
},
}
build.zig
to add the ZigJR module to your executable.