From 9a8d578142588e8d33e5bd9f3f7434be453ed5ff Mon Sep 17 00:00:00 2001 From: fabiojb Date: Sat, 3 May 2025 18:25:17 -0300 Subject: [PATCH] completion(winetricks): redirect `winetricks list-all` sderr to /dev/null --- share/completions/winetricks.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/completions/winetricks.fish b/share/completions/winetricks.fish index 1e2f73bcf..7e4b30609 100644 --- a/share/completions/winetricks.fish +++ b/share/completions/winetricks.fish @@ -1,5 +1,5 @@ function __fish_winetricks__complete_verbs - winetricks list-all | + winetricks list-all 2>/dev/null | string match --invert --regex '^==' | string match --invert --regex '^(apps|dlls|fonts|games|settings)$' | string replace --regex '(\S+)\s+(.+)' '$1\t$2'