Files
pezkuwi-subxt/polkadot/doc/shell-completion.md
T
Chevdor a30092ab42 Markdown linter (#1309)
* Add markdown linting

- add linter default rules
- adapt rules to current code
- fix the code for linting to pass
- add CI check

fix #1243

* Fix markdown for Substrate
* Fix tooling install
* Fix workflow
* Add documentation
* Remove trailing spaces
* Update .github/.markdownlint.yaml

Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
* Fix mangled markdown/lists
* Fix captalization issues on known words
2023-09-04 12:02:32 +03:00

1003 B

Shell completion

The Polkadot CLI command supports shell auto-completion. For this to work, you will need to run the completion script matching you build and system.

Assuming you built a release version using cargo build --release and use bash run the following:

source target/release/completion-scripts/polkadot.bash

You can find completion scripts for:

  • bash
  • fish
  • zsh
  • elvish
  • powershell

To make this change persistent, you can proceed as follow:

First install

COMPL_DIR=$HOME/.completion
mkdir -p $COMPL_DIR
cp -f target/release/completion-scripts/polkadot.bash $COMPL_DIR/
echo "source $COMPL_DIR/polkadot.bash" >> $HOME/.bash_profile
source $HOME/.bash_profile

Update

When you build a new version of Polkadot, the following will ensure you auto-completion script matches the current binary:

COMPL_DIR=$HOME/.completion
mkdir -p $COMPL_DIR
cp -f target/release/completion-scripts/polkadot.bash $COMPL_DIR/
source $HOME/.bash_profile