3a989321fc1ab26bbc4d5ec240b95504de825eb3
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 3m54s
feat(app): add minimal size argument for App.start Read more corresponding inputs from stdin and convert them correctly (i.e. in band window resizing), further keys (arrow keys, F-keys, etc.). Respect the provided minimal size for the application which posts an error message in case the size is smaller than the requested minimal size.
zterm Terminal User Interface Library
zterm is a terminal user interface library to implement terminal (fullscreen or inline) applications.
Note
Only builds using the master version might will work.
Usage
To add or update zterm as a dependency in your project run the following command:
zig fetch --save git+https://gitea.yves-biener.de/yves-biener/zterm
Add the dependency to your module as follows in your build.zig:
const zterm: *Dependency = b.dependency("zterm", .{
.target = target,
.optimize = optimize,
});
// ...
exe.root_module.addImport("zterm", zterm.module("zterm"));
For an example you can take a look at build.zig for an example.
Languages
Zig
100%