Skip to content

Commit

Permalink
tab completion docu
Browse files Browse the repository at this point in the history
  • Loading branch information
speckdavid committed Jul 18, 2024
1 parent a517782 commit f44b095
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ and on macOS we do not test LP solvers (yet).

See [BUILD.md](BUILD.md).

## Tab completion

See [TABCOMPLETION.md](TABCOMPLETION.md).

## Contributors

Expand Down
26 changes: 26 additions & 0 deletions TABCOMPLETION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
## Completion for Fast Downward

We support tab completion for bash and zsh based on the python package [argcomplete](https://pypi.org/project/argcomplete/) which can be installed via apt

```bash
sudo apt install python3-argcomplete
```

or pip

```bash
pip install argcomplete
```

We recommand to globally enable tab completion for argcomplete as follows. This will enable argcomplete for all python programs which use argcomplete. You can find local alternatives in the [argcomplete documentation](https://pypi.org/project/argcomplete/#activating-global-completion).

```bash
activate-global-python-argcomplete
```

Restart your shell afterwards.

## Completion for Search Component



0 comments on commit f44b095

Please sign in to comment.