File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -197,6 +197,30 @@ just typecheck --warn-unreachable
197197> export MYPY_CACHE_DIR=~ /path/to/execution-specs/.mypy_cache
198198> ` ` `
199199
200+ # ## Shell Auto-Completion
201+
202+ ` just` provides tab-completion for recipe names and arguments. To enable it for your shell:
203+
204+ ** Bash** — add to ` ~/.bashrc` :
205+
206+ ` ` ` bash
207+ eval " $( just --completions bash) "
208+ ```
209+
210+ ** Zsh** — add to ` ~/.zshrc ` :
211+
212+ ``` bash
213+ eval " $( just --completions zsh) "
214+ ```
215+
216+ ** Fish** — run once (fish auto-loads completions from this directory):
217+
218+ ``` bash
219+ just --completions fish > ~ /.config/fish/completions/just.fish
220+ ```
221+
222+ After restarting your shell (or sourcing the config), ` just <Tab> ` will complete recipe names.
223+
200224A trace of the EVM execution for any test case can be obtained by providing the ` --evm-trace ` argument to pytest.
201225Note: Make sure to run the EVM trace on a small number of tests at a time. The log might otherwise get very big.
202226Below is an example.
You can’t perform that action at this time.
0 commit comments