You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.3 KiB
Markdown

2 years ago
## [zig](https://ziglang.org) docs on command line.
usage:
zdoc [-s] <source> [identifier]
2 years ago
the program searches source code for matching public identifiers,
printing found types and their doc comments to stdout.
the search is case-insensitive and non-exhaustive.
if -s option is specified, any identifier substring matches.
2 years ago
for example, look up "hello" identifier in a project file:
2 years ago
zdoc ./src/main.zig hello
search across all .zig files starting from the src directory,
recursively and following symlinks:
zdoc ./src hello
if the source starts with `std.`, the dot delimiters are replaced
with filesystem path separator and "std." with the `std_dir` value
from `zig env` command output.
for example, look up format function in std lib:
zdoc std.fmt format
list all expectXxx functions from the testing module:
zdoc -s std.testing expect
as a special case, if the source is exactly `std` and no such file
or directory exists, zdoc searches across the whole zig std lib.
2 years ago
---
to contribute, create a pull request or send a patch with
[git send-mail](https://git-scm.com/docs/git-send-email) to alex-dot-cloudware.io.
before sending a change, please make sure tests pass:
zig build test
and all code is formatted:
2 years ago
zig fmt --check .
### license
same as zig license.