mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 09:27:59 +00:00
30bdc8f5d4
* dummy: impl another runtime API * query the on chain disputes, and inform self * make use of the refactor * minro * SPLIT ME * write dispute values * wip * impl for all runtimes * chore: fmt * [] -> get * fixup mock runtime * fixup * fixup discovery for overseer init * chore: fmt * spellcheck * rename imported_on_chain_disputes -> on_chain_votes * reduction * make it mockable * rename and refactor * don't query on chain info if it's not needed * yikes * fmt * fix test * minimal fix for existing tests * attempt to fetch the session info from the rolling window before falling back * moved * comments * comments * test for backing votes * rename * Update runtime/polkadot/src/lib.rs * chore: spellcheck + dict * chore: fmt * fixup cache size * add warning * logging, rationale, less defense * introduce new unchecked, that still checks in debug builds * fix * draft alt approach * fix unused imports * include the session * Update node/core/dispute-coordinator/src/real/mod.rs Co-authored-by: Robert Habermeier <rphmeier@gmail.com> * provide where possible * expand comment * fixin * fixup * ValidityVote <-> ValidityAttestation <-> CompactStatement has a 1:1 representation * mark TODO * Update primitives/src/v1/mod.rs Co-authored-by: Robert Habermeier <rphmeier@gmail.com> * address review comments * update docs Co-authored-by: Robert Habermeier <rphmeier@gmail.com>
42 lines
1007 B
Markdown
42 lines
1007 B
Markdown
|
|
## 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:
|
|
|
|
```bash
|
|
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
|
|
|
|
```bash
|
|
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:
|
|
|
|
```bash
|
|
COMPL_DIR=$HOME/.completion
|
|
mkdir -p $COMPL_DIR
|
|
cp -f target/release/completion-scripts/polkadot.bash $COMPL_DIR/
|
|
source $HOME/.bash_profile
|
|
```
|