From 47e76c9f85f8cd5e0bad49853e7e461dacb7df94 Mon Sep 17 00:00:00 2001 From: fryorcraken Date: Fri, 16 Jan 2026 11:26:58 +1100 Subject: [PATCH] Added support for --long --- completions/zsh/_wallet | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/completions/zsh/_wallet b/completions/zsh/_wallet index 4489b9c4..d2831ef0 100644 --- a/completions/zsh/_wallet +++ b/completions/zsh/_wallet @@ -162,8 +162,13 @@ _wallet_account() { case $line[1] in get) _arguments \ - '--raw[Get raw account data]' \ - '--account-id[Account ID to query]:account_id:_wallet_account_ids' + '(-r --raw)'{-r,--raw}'[Get raw account data]' \ + '(-k --keys)'{-k,--keys}'[Display keys (pk for public accounts, npk/ipk for private accounts)]' \ + '(-a --account-id)'{-a,--account-id}'[Account ID to query]:account_id:_wallet_account_ids' + ;; + list|ls) + _arguments \ + '(-l --long)'{-l,--long}'[Display detailed account information]' ;; new) _arguments -C \