CLI¶
Usage¶
juvix [Global options] ((-v|--version) | (-h|--help) | COMPILER_CMD | UTILITY_CMD)
Informative options¶
-v,--version
Print the version and exit--numeric-version
Show only the version number-h,--help
Show this help text
Global Command flags¶
--no-colors
Disable globally ANSI formatting--show-name-ids
Show the unique number of each identifier when pretty printing--only-errors
Only print errors in a uniform format (used by juvix-mode)--no-termination
Disable termination checking--no-positivity
Disable positivity checking for inductive types--no-coverage
Disable coverage checking for patterns--no-stdlib
Do not use the standard library--internal-build-dir BUILD_DIR
Directory for compiler internal output--stdin
Read from Stdin--unroll ARG
Recursion unrolling limit (default: 140)
Main Commands¶
html
Generate HTML output from a Juvix filetypecheck
Typecheck a Juvix filecompile
Compile a Juvix fileeval
Evaluate a Juvix file
Utility Commands¶
doctor
Perform checks on your Juvix development environmentinit
Interactively initialize a Juvix project in the current directoryrepl
Run the Juvix REPLformat
Format a Juvix file or Juvix projectclean
Delete build artifacts
Dev Commands¶
juvix dev COMMAND
parse
Parse a Juvix filescope
Parse and scope a Juvix filehighlight
Highlight a Juvix filecore
Subcommands related to JuvixCoreasm
Subcommands related to JuvixAsmroot
Show the root path for a Juvix projecttermination
Subcommands related to termination checkinginternal
Subcommands related to Internalminic
Translate a Juvix file to a subset of Cgeb
Subcommands related to JuvixGebruntime
Subcommands related to the Juvix runtimerepl
Run the Juvix dev REPL
CLI Auto-completion Scripts¶
The Juvix CLI can generate auto-completion scripts. Follow the instructions below for your shell.
Note
NB: You may need to restart your shell after installing the completion script.
Bash¶
Add the following line to your bash init script (for example
~/.bashrc
).
eval "$(juvix --bash-completion-script juvix)"
Fish¶
Run the following command in your shell:
juvix --fish-completion-script juvix
> ~/.config/fish/completions/juvix.fish
ZSH¶
Run the following command in your shell:
juvix --zsh-completion-script juvix > $DIR_IN_FPATH/_juvix
where $DIR_IN_FPATH
is a directory that is present on the ZSH FPATH
variable (which
you can inspect by running echo $FPATH
in the shell).