From d9b2b0c824d48126668935f0555f3d8d10022c8b Mon Sep 17 00:00:00 2001 From: fryorcraken Date: Fri, 27 Feb 2026 15:26:57 +1100 Subject: [PATCH] update zsh completion --- completions/zsh/_wallet | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/completions/zsh/_wallet b/completions/zsh/_wallet index e0c5f415..6e60cc53 100644 --- a/completions/zsh/_wallet +++ b/completions/zsh/_wallet @@ -181,7 +181,8 @@ _wallet_account() { ;; new_args) _arguments \ - '--cci[Chain index of a parent node]:chain_index:' + '--cci[Chain index of a parent node]:chain_index:' \ + '(-l --label)'{-l,--label}'[Label to assign to the new account]:label:' ;; esac ;; @@ -343,7 +344,6 @@ _wallet_config() { local -a config_keys config_keys=( - 'all' 'override_rust_log' 'sequencer_addr' 'seq_poll_timeout' @@ -370,7 +370,12 @@ _wallet_config() { ;; args) case $line[1] in - get|description) + get) + _arguments \ + '(-a --all)'{-a,--all}'[Print all config fields]' \ + '::key:compadd -a config_keys' + ;; + description) compadd -a config_keys ;; set)