From 3c468054bd4b2a99ed17bd6b698ac6850b26d0f0 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Tue, 21 Oct 2025 21:36:34 +0200 Subject: [PATCH] completions/iwctl: fix spurious error output Regressed in 4.1 in c94eddaf4b3 (Replaced all uses of argparse -i with argparse -u, 2025-08-30). Closes #11983 --- share/completions/iwctl.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/completions/iwctl.fish b/share/completions/iwctl.fish index 529b5eedc..94f013136 100644 --- a/share/completions/iwctl.fish +++ b/share/completions/iwctl.fish @@ -8,7 +8,7 @@ function __iwctl_filter -w iwctl # awk does not work on multiline entries, therefore we use string match, # which has the added benefit of filtering out the `No devices in ...` lines - argparse -u all-columns -- $argv + argparse -u 'all-columns&' -- $argv # remove color escape sequences set -l results (iwctl $argv_opts -- $argv | string replace -ra '\e\[[\d;]+m' '')